/* Login/register field fixes: keep inputs inside their icon row and preserve native checkboxes. */
.login-page {
  min-height: auto;
}
.login-form-area label > span input {
  flex: 1;
  min-width: 0;
  height: 42px;
  border: 0;
  outline: 0;
  background: #fff !important;
  color: #1e3323 !important;
  box-shadow: inset 0 0 0 1000px #fff !important;
}
.login-form-area label > span input:-webkit-autofill {
  -webkit-text-fill-color: #1e3323 !important;
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  transition: background-color 9999s ease-in-out 0s;
}
.login-card {
  margin-bottom: 40px;
}
.login-form-area .register-link {
  margin-top: 42px !important;
}
.register-card {
  min-height: 710px;
}
.register-form-area {
  padding: 45px 38px;
}
.register-form-area label {
  margin: 12px 0;
}
.auth-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.auth-toggle {
  width: 42px;
  border: 0;
  background: #fff;
  color: #777;
}
.terms-check {
  display: flex !important;
  align-items: center;
  gap: 6px;
  font-size: 10px !important;
  font-weight: 400 !important;
}
.terms-check input[type="checkbox"] {
  appearance: auto !important;
  display: block !important;
  width: 15px !important;
  height: 15px !important;
  flex: 0 0 15px;
  margin: 0 !important;
  padding: 0 !important;
  background: initial !important;
  box-shadow: none !important;
  accent-color: #4b8511;
}
.terms-check a {
  color: #3d7b12;
  text-decoration: none;
  font-weight: 700;
}
@media (max-width: 700px) {
  .auth-two {
    grid-template-columns: 1fr;
  }
  .register-form-area {
    padding: 32px 25px;
  }
}
