.auth-page {
  padding: 15px 0;
  height: 100vh;
  display: flex;
  align-items: stretch;
}
.auth-page .row {
  height: 100%;
}
@media (min-width: 768px) {
.outer-wrapper {
  height: 100%;
}
}
.auth-page .row .left-wrapper {
  background-color: var(--light-blue-color);
  border-radius: 50px;
  padding: 36px 0;
  height: 100%;
  text-align: center;
  /* background-image: url(../../img/login-bg.png); */
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .auth-page .row .left-wrapper {
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    background: none;
    padding: 0;
  }
}
.auth-page .row .left-wrapper .logo {
  max-width: 170px;
}
@media (max-width: 767px) {
  .auth-page .row .left-wrapper .logo {
    max-width: 100px;
    margin-bottom: 30px;
  }
}
.auth-page .row .left-wrapper .auth {
  flex: 1;
  object-fit: contain;
}
@media (max-width: 767px) {
  .auth-page .row .left-wrapper .auth {
    display: none;
  }
}
.auth-page .row .right-wrapper {
  padding: 15px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-direction: column;
  position: relative;
}

.auth-page .row .right-wrapper img.logo {
  max-width: 250px;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .auth-page .row .right-wrapper img.logo {
    position: relative;
    top: 0;
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .auth-page .row .right-wrapper img.logo {
    position: absolute;
    top: 36px;
    margin: 0;
  }
}
.auth-page .row .right-wrapper h1 {
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  color: var(--base-color);
  margin: 0;
}
@media (max-width: 767px) {
  .auth-page .row .right-wrapper h1 {
    margin-top: 30px;
  }
}
.auth-page .row .right-wrapper .right-wrapper-inner {
  max-width: 500px;
  width: 100%;
  text-align: start;
}
.auth-page .row .right-wrapper .right-wrapper-inner p {
  margin: 0 0 28px;
  font-size: 16px;
  color: #AAAAAA;
}
.auth-page .row .right-wrapper .right-wrapper-inner .form-group:not(:nth-child(3)) {
  margin-bottom: 30px!important;
}
.auth-page .row .right-wrapper .right-wrapper-inner .form-group .form-control::placeholder {
  color: var(--base-color);
}
.auth-page .row .right-wrapper .right-wrapper-inner .form-group .form-control {
  background-color: transparent;
  border-radius: 50px;
}
.auth-page .row .right-wrapper .right-wrapper-inner .form-group .form-control.password-control {
  padding-right: 40px;
}
.auth-page .row .right-wrapper .right-wrapper-inner .form-group .form-control:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #cfedff inset !important;
}
.auth-page .row .right-wrapper .right-wrapper-inner .form-group label {
  margin-bottom: 3px;
}
.auth-page .row .right-wrapper .right-wrapper-inner .form-group .error {
  position: absolute;
  top: 100%;
  left: 0;
  color: #ff948d;
  font-size: 12px;
}
.auth-page .row .right-wrapper .right-wrapper-inner .form-group .btn-primary {
  background-color: var(--primary-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 50px;
  padding: 12.5px 45px;
  font-size: 15px;
  font-weight: 500;
  min-width: 232px;
}
.auth-page .row .right-wrapper .right-wrapper-inner .form-group .toggle-password {
  position: absolute;
  right: 10px;
  top: 40px;
  color: var(--base-color);
  cursor: pointer;
}
.auth-page .row .right-wrapper .right-wrapper-inner .forgot-password {
  text-align: right;
}
.auth-page .row .right-wrapper .right-wrapper-inner .forgot-password p {
  font-size: 15px;
  color: var(--base-color);
  margin: 0;
}
.auth-page .row .right-wrapper .right-wrapper-inner .forgot-password a {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 400;
}

/*# sourceMappingURL=login.css.map */
