.accountLoginForm {
  display: grid;
  gap: 14px;
  margin: 24px 0 10px;
  text-align: left;
}

.accountLoginForm label {
  display: grid;
  gap: 7px;
  color: #294640;
  font-size: 0.82rem;
  font-weight: 800;
}

.accountLoginForm input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #c7d9d4;
  border-radius: 12px;
  outline: none;
  background: #fff;
  color: #0a2925;
  font: inherit;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.accountLoginForm input:focus {
  border-color: #148b7b;
  box-shadow: 0 0 0 4px rgba(20, 139, 123, 0.12);
}

.accountLoginForm button,
.loginBox.luxe .googleLoginButton {
  width: 100%;
  margin: 0;
}

.accountLoginForm .accountPasswordLink {
  min-height: 36px;
  padding: 6px 10px;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #176f64;
  font-size: 0.83rem;
  font-weight: 800;
}

.accountLoginForm .accountPasswordLink:hover {
  text-decoration: underline;
}

.accountLoginNotice {
  padding: 11px 12px;
  border: 1px solid #e5c98c;
  border-radius: 11px;
  background: #fff8e8;
  color: #6e5118;
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: left;
}

.loginBox.luxe .loginDivider {
  margin: 16px 0;
}

.loginBox.luxe .googleLoginButton {
  margin-bottom: 16px;
  border: 1px solid #b8d0ca;
  background: #fff;
  color: #174d47;
}

.passwordRecoveryBox {
  width: min(480px, 92vw);
}

.passwordRule {
  color: #667872;
  font-size: 0.76rem;
  line-height: 1.45;
}

.passwordAdminPanel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 14px 0;
  padding: 14px;
  border: 1px solid #c7ddd6;
  border-radius: 13px;
  background: #f1faf7;
}

.passwordAdminPanel p {
  margin: 5px 0 0;
  color: #5b6d67;
  font-size: 0.8rem;
  line-height: 1.45;
}

.passwordAdminPanel button {
  flex: 0 0 auto;
  margin: 0;
}

@media (max-width: 560px) {
  .loginBox.luxe {
    width: min(94vw, 440px);
    padding: 30px 22px;
  }

  .loginBox.luxe h1 {
    font-size: 26px;
  }

  .loginAura {
    width: 360px;
    height: 360px;
  }

  .passwordAdminPanel {
    align-items: stretch;
    flex-direction: column;
  }
}
