input {
  color: inherit;
  font-family: inherit;
}

label {
  cursor: inherit;
}

button {
  border: 0;
  background: white;
  color: inherit;
}

button:focus {
  outline: none;
}

.d-flex {
  display: flex;
}

.full-absolute {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.app {
  min-height: 100%;
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.bg-img {
  position: absolute;
  background-image: url("/static/pages/login/images/main-bg.jpg");
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
}

.bg-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: black;
  opacity: 0.6;
  z-index: 2;
}

.bg-overlay2 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgb(0, 74, 68);
  background: linear-gradient(0deg, rgb(0, 74, 68) 0%, rgba(255, 167, 51, 0.4206057423) 35%);
  border-radius: 0 24px 24px 0;
  opacity: 0.8;
  z-index: 2;
}

.login-container {
  z-index: 3;
  max-width: 870px;
  height: 80%;
  width: 80%;
  border-radius: 24px;
  background: white;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 20px 20px rgba(0, 0, 0, 0.14), 0 3px 1px 5px rgba(0, 0, 0, 0.12), 0 1px 5px 5px rgba(0, 0, 0, 0.2);
  min-height: 550px;
  position: relative;
}

.login-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 594px;
}

.panel {
  flex: 1 0 50%;
}

.left-panel {
  position: relative;
}

.left-panel .left-panel__bg-img {
  background-image: url("/static/pages/login/images/logo-bg.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 0 24px 24px 0;
}

.left-panel .left-panel__heading {
  position: absolute;
  color: white;
  right: 22px;
  bottom: 6px;
  z-index: 3;
  font-size: 1.85rem;
  font-weight: bold;
  text-align: right;
}

.right-panel {
  padding: 2.75rem 2.75rem;
}

.app-logo {
  text-align: center;
  font-size: 1.85rem;
  color: #5850ec;
  margin-bottom: 2.25rem;
  font-weight: bold;
}

.login-switcher {
  background: white;
  border-radius: 25px;
  margin: 0 auto;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 4px;
}

.login-switcher .login-switcher__option {
  text-align: center;
  padding: 12px 12px;
  color: var(--var-primary-color);
  border-radius: 19px;
  width: 150px;
  transition: all 0.2s ease-in;
}

.login-switcher .login-switcher__option:hover {
  background: rgba(88, 80, 236, 0.168627451);
}

.login-switcher .login-switcher__option:nth-child(1) {
  margin-right: 4px;
}

.login-switcher .login-switcher__option:nth-child(2) {
  margin-left: 4px;
}

.login-switcher .login-switcher__option.active {
  color: white;
  background: var(--var-primary-color);
}

.form-control {
  width: 100%;
  height: 52px;
  position: relative;
  margin-bottom: 1.5rem;
}

.form-control .form-control-input {
  direction: ltr;
  text-align: center;
  border-radius: 6px;
  height: 100%;
  width: 100%;
  padding: 0 1rem;
  border: 0;
  -webkit-appearance: none;
  outline: none;
  font-size: 1rem;
  transition: all 0.2s ease-in;
}

.form-control .left-icon {
  position: absolute;
  top: 14px;
  left: 10px;
  color: #60656b;
  transition: all 0.2s ease-in;
}

.form-control .success-icon {
  position: absolute;
  transition: all 0.2s ease-in;
  opacity: 0;
  transform: translatey(15px);
  right: 15px;
  top: 14px;
  color: var(--var-success-color);
}

.form-control.fc-active .form-control-input {
  box-shadow: inset 0 0 0 2px var(--var-primary-color), inset 0 0 0 1px #e0e0e0;
}

.form-control.fc-active .left-icon {
  color: var(--var-primary-color);
}

.form-control.fc-touched.fc-success .form-control-input {
  box-shadow: inset 0 0 0 2px var(--var-success-color), inset 0 0 0 1px #e0e0e0;
}

.form-control.fc-touched.fc-success .left-icon {
  color: var(--var-success-color);
}

.form-control.fc-touched.fc-success .success-icon {
  opacity: 1;
  transform: none;
}

.form-control.fc-touched.fc-error .form-control-input {
  box-shadow: inset 0 0 0 2px var(--var-danger-color), inset 0 0 0 1px #e0e0e0;
}

.form-control.fc-touched.fc-error .left-icon {
  color: var(--var-danger-color);
}

.checkbox {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
  margin-bottom: 2.5rem;
}

.checkbox .checkbox__square {
  display: block;
  position: relative;
  margin-left: 8px;
  border: 2px solid #e6ecf5;
  height: 24px;
  width: 24px;
  border-radius: 4px;
  transition: all 0.2s ease-in;
}

.checkbox .checkbox__square .check-icon {
  position: absolute;
  width: 22px;
  right: -1px;
  bottom: -3px;
  stroke-width: 3px;
  transform: rotate(-46deg) scale(0.6);
  opacity: 0;
  transition: all 0.2s ease-in;
  color: var(--var-success-color);
}

.checkbox.chk-active .checkbox__square {
  border-color: var(--var-success-color);
}

.checkbox.chk-active .checkbox__square .check-icon {
  transform: none;
  opacity: 1;
}

.btn {
  width: 100%;
  height: 46px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.27s;
  cursor: pointer;
}

.btn.btn-primary {
  background: var(--var-primary-color);
  color: white;
}

.btn.btn-primary:hover {
  background: rgba(88, 80, 236, 0.9215686275);
}

.btn.btn-primary[disabled] {
  background-color: rgba(230, 236, 245, 0.631372549);
  color: rgba(114, 128, 150, 0.6117647059);
  cursor: initial;
}

.separator {
  text-align: center;
  margin: 0.6rem 0;
  color: #9da6b3;
}

.btn-google {
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 5px 0px;
}

.btn-google img {
  margin-right: 8px;
  height: 25px;
}

.btn-google:hover {
  background: rgba(9, 30, 66, 0.02);
}

@media screen and (max-width: 894px) {
  .bg-img {
    background-position: right;
  }
  .login-container {
    border-radius: 12px;
    max-width: 482px;
  }
  .left-panel {
    display: none;
  }
}
@media screen and (max-width: 470px) {
  .app,
  .login-container {
    height: 100%;
    width: 100%;
  }
  .login-container {
    padding-top: 2.25rem;
    border-radius: 0;
  }
}
@media screen and (max-height: 612px) {
  .app {
    align-items: unset;
  }
  .login-container {
    margin: 3.5rem 0;
  }
}/*# sourceMappingURL=login.css.map */