.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "REM", sans-serif;
}

.login-box {
  background-color: #000035;
  position: relative;
  height: 100vh;
  width: 100%;
  font-family: "REM", sans-serif;
  z-index: 99;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
  z-index: 1;
}

.login-box:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.login-box .login-logo {
  position: absolute;
  right: 40px;
  top: 20px;
}

.login-box .login-logo img {
  width: 100%;
  height: 100%;
  max-width: 220px;
}

.login-box .login-card {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  margin: 0 20px;
}

@media screen and (max-width: 991px) {
  .login-box .login-card {
    padding: 20px;
  }
  .login-box .login-logo {
    right: 50%;
    transform: translate(50%, 0);
  }
}

.login-box .login-logo-sm {
  margin: -100px auto 30px auto;
  text-align: center;
  width: 120px;
  height: 120px;
  background: rgb(255, 227, 59);
  background: linear-gradient(20deg, rgba(255, 227, 59, 1) 0%, rgba(255, 141, 0, 1) 34%, rgba(255, 69, 38, 1) 100%);
  border-radius: 50%;
  padding: 5px;
}

.login-box .login-logo-sm img {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  padding: 10px;
}

.login-box .form-head {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.login-box .form-head .title {
  font-size: 40px;
  color: #131313;
  margin: 0;
}

.login-box .form-head .title span {
  font-size: 30px;
}

.login-box .form-head .sub-title {
  font-size: 15px;
  color: #777;
}

.login-box .form-group {
  margin-bottom: 30px;
}

.login-box .form-control {
  height: 50px;
  border-radius: 10px;
}

.login-box .login-btn {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 0;
}

.login-box .login-btn {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 0;
}

.login-box .login-btn .btn {
  padding: 10px 35px;
  font-size: 20px;
  border-radius: 10px;
  box-shadow: 0px 5px 15px 0px rgba(255, 69, 38, 0.5);
  background: rgba(255, 69, 38, 1);
  transition: all 0.5s;
  border-color: transparent;
}

.login-box .login-btn .btn:hover {
  background: rgba(255, 141, 0, 1);
  transition: all 0.5s;
}

.login-box .login-content-wrapper .login-card .login-inner-form .form-group-inner {
  position: relative;
}

.login-box .login-content-wrapper .login-card .login-inner-form .form-group-inner .eye-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translate(0, -50%);
  color: #131313;
}

.custom-select.is-invalid:focus,
.custom-select.is-valid:focus,
.custom-select:invalid:focus,
.custom-select:valid:focus,
.form-control.is-invalid:focus,
.form-control.is-valid:focus,
.form-control:invalid:focus,
.form-control:valid:focus {
  border-color: rgba(255, 69, 38, 1);
}