html {
  height: 100%;
}
body {
  background: url('/static/images/login-bg.jpeg') center top no-repeat;
  background-size: cover;
  height: 100%;
}
.unit-40 {
  max-width: 500px;
  float: none !important;
  margin: 0 auto !important;
}
.login-logo {
  position: relative;
  z-index: 2;
  margin: 100px 0 0 0;
}
.login-overlay {
  background-color: #394d6a;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  opacity: 0.8;
  z-index: 1;
}
.login-box {
  max-width: 500px;
  margin: 50px 0 0 0;
  border-radius: 2px;
  background-color: #ffffff;
  padding: 35px 60px 35px 60px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.login-box .flexed {
  display: flex;
  align-items: center;
  width: 100%;
}
.login-box .flexed .new-password-span {
  margin: 0;
}
.login-box .flexed .new-password-label {
  width: 70%;
  margin-bottom: 0;
}
.login-box .field {
  position: relative;
}
.login-box .field__type {
  background: #d5dadd;
  width: 50px;
  height: 42px;
  line-height: 42px;
  color: #ffffff;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  font-size: 25px;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.login-box .field__input {
  height: 42px !important;
  background-color: #fbfbfb;
  padding: 9px 0 9px 70px !important;
  margin: 0 0 20px 0;
  border-radius: 2px !important;
  border: 1px solid #e8e8ee !important;
  color: #babec1;
}
.login-box .field__input:focus {
  border-color: #e8e8ee;
  box-shadow: none;
  outline: none;
}
.login-box .field__input::-webkit-input-placeholder {
  color: #babec1;
}
.login-box .field__input::-moz-placeholder {
  color: #babec1;
}
.login-box .field__input:-moz-placeholder {
  color: #babec1;
}
.login-box .field__input:-ms-input-placeholder {
  color: #babec1;
}
.login-box .field__input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fbfbfb inset;
  background: #fbfbfb !important;
}
.login-box .field button {
  margin: 20px 0 0 0;
}
.login-box .field .show_password {
  display: none;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 3;
  color: #babec1;
  opacity: 0.6;
  transition: all 0.3s;
}
.login-box .field .show_password:hover {
  cursor: pointer;
  opacity: 1;
}
.login-box__title {
  color: #404040;
  font-size: 18pt;
  margin-bottom: 2rem;
}
.login-box .js-field--hidden,
.login-box .js-alert--hidden {
  display: none;
}
.login-box .js-field--active {
  display: block;
  border: 0 !important;
  padding: 0.6rem 0 0 0 !important;
  color: red;
  margin-bottom: 1rem;
}
