* {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}
body {
  background: url("../../../img/home_img/login.jpg");
  font-family: Arial;
  padding: 80px;
}

.login {
  margin: 20px auto;
  width: 300px;
}
.login-screen {
  background-color: rgba(255, 255, 255, 0.73);
  box-shadow: 0px 0px 50px 2px rgba(0, 0, 0, 0.35);
  padding: 20px;
  border-radius: 5px;
}

.app-title {
  text-align: center;
  color: #777;
  margin-bottom: 5px;
}

.login-form {
  text-align: left;
}
.control-group {
  margin-bottom: 10px;
}

input {
  background-color: white;
  border: 2px solid transparent;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 200;
  padding: 10px;
  width: 100%;
  transition: border .5s;
}

input[type='checkbox']{
  display: inline-table;
  width: 20px;
}
label{
  color: #555;
}

input:focus {
  border: 2px solid #3498DB;
  box-shadow: none;
}

.btn {
  border: 2px solid transparent;
  background: #165e18;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  line-height: 25px;
  padding: 10px 0;
  text-decoration: none;
  text-shadow: none;
  border-radius: 3px;
  box-shadow: none;
  transition: 0.25s;
  display: block;
  width: 100%;
  margin: 0 auto;
}

.btn:hover {
  background-color: #1b8824;
}

.login-link {
  text-align: center;
  font-size: 12px;
  color: #444;
  display: block;
  margin-top: 12px;
}