html {
  overflow: hidden;
}
* {
  box-sizing: border-box;
}
body.body-login {
  font-family: "Roboto", Verdana, Helvetica, Arial, sans-serif;
  background: url("/images/PhilLongUser/login-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}
.body-overlay {
  background-color: rgba(0,0,0,0.3);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
}
.login {
  width: 360px;
  margin: 50px auto;
  text-align: center;
}
.login .login-line {
  background: #ff9924;
  height: 5px;
  left: 0;
  right: 0;
  position: absolute;
  bottom: -4px;
  z-index: -1;
  border-radius: 0 0 2px 2px;
}
.login h2 {
  margin: 50px 0 0;
  color: #fff;
}
.login .login-container {
  background-color: #fff;
  padding: 30px;
  text-align: left;
  margin-top: 40px;
  box-shadow: 0 8px 11px 0px rgba(0,0,0,0.4);
  border-radius: 2px;
  position: relative;
}
.login .login-container .input-container {
  margin-bottom: 22px;
}
.login .login-container input[type="text"],
.login .login-container input[type="password"],
.login .login-container input[type="email"] {
  background-color: #fefefe;
  padding: 10px;
  border: 1px solid #cfcfcf;
  font-size: 16px;
  transition: background-color 300ms ease-in-out;
  width: 100%;
  outline: none;
  border-radius: 3px;
}
.login .login-container input[type="text"]:focus,
.login .login-container input[type="password"]:focus,
.login .login-container input[type="email"]:focus {
  border-color: #ff9741;
  background-color: #f7f7f7;
}
.login label {
  font-size: 16px;
  line-height: 17px;
  margin-bottom: 5px;
  display: block;
}
.login .login-btn {
  display: block;
  padding: 0 20px;
  background: #687fba;
  color: #fff;
  font-weight: 500;
  width: 100%;
  font-size: 20px;
  line-height: 40px;
  border-radius: 2px;
  border-top: 1px solid #9dacd2;
  border-bottom: 2px solid #384b7a;
  margin-top: 30px;
}
.login button {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
  border: none;
}
.login button:active,
.login button:focus {
  outline: 0;
}
.login a {
  font-size: 14px;
  margin-top: 10px;
  text-decoration: none;
  display: inline-block;
  color: #384b7a;
}
.login-logo {
  width: 350px;
}
.notification,
select.error,
input[type="text"].error,
input[type="password"].error,
input[type="email"].error,
input[type="tel"].error,
textarea.error {
  width: 100%;
  padding: 7px 10px;
  font-weight: 700;
  border: 1px solid $light-gray;
  border-radius: 2px;
  color: #000;
  margin-bottom: 10px;
}
.formMessage.errors {
  padding-left: 0;
  list-style: none;
  color: #c62828;
}
select.error,
input[type="text"].error,
input[type="password"].error,
input[type="email"].error,
input[type="tel"].error,
textarea.error {
  display: block;
  width: 100%;
  font-weight: inherit;
  border: 1px solid #c62828;
  border-radius: 3px;
  margin-bottom: 0;
}
