.auth-recovery-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 10%, rgba(35, 104, 89, 0.1), transparent 32rem),
    #f4f6f5;
  color: #18211f;
}

.auth-recovery-shell {
  width: min(100% - 32px, 560px);
  margin: 0 auto;
  padding: clamp(32px, 7vw, 88px) 0;
}

.auth-recovery-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: #1c2b28;
  font-weight: 750;
  text-decoration: none;
}

.auth-recovery-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 10px;
  background: #174f44;
  color: #fff;
  letter-spacing: 0.04em;
}

.auth-recovery-card {
  padding: clamp(24px, 5vw, 40px);
  border: 1px solid #d9dfdc;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(25, 43, 39, 0.08);
}

.auth-recovery-eyebrow {
  margin: 0 0 10px;
  color: #27705f;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-recovery-card h1 {
  margin: 0;
  font-size: clamp(1.75rem, 5vw, 2.4rem);
  letter-spacing: -0.035em;
}

.auth-recovery-intro {
  margin: 14px 0 26px;
  color: #58645f;
  line-height: 1.65;
}

.auth-recovery-alert {
  margin-bottom: 18px;
  padding: 13px 14px;
  border: 1px solid #ebc4c0;
  border-radius: 10px;
  background: #fff5f4;
  color: #8b2921;
  line-height: 1.5;
}

.auth-recovery-alert.is-success {
  border-color: #b8dbd1;
  background: #f1faf7;
  color: #175d4d;
}

.auth-recovery-field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.auth-recovery-field label {
  font-size: 0.9rem;
  font-weight: 700;
}

.auth-recovery-field input {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #bbc6c1;
  border-radius: 10px;
  background: #fff;
  color: #18211f;
  font: inherit;
}

.auth-recovery-field input:focus {
  border-color: #27705f;
  outline: 3px solid rgba(39, 112, 95, 0.16);
}

.auth-recovery-code {
  text-align: center;
  font-size: 1.7rem !important;
  font-weight: 750 !important;
  letter-spacing: 0.45em;
}

.auth-recovery-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.auth-recovery-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid #174f44;
  border-radius: 10px;
  background: #174f44;
  color: #fff;
  font: inherit;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

.auth-recovery-button:hover {
  background: #103f36;
}

.auth-recovery-button.is-secondary {
  border-color: #c6cfcb;
  background: #fff;
  color: #26332f;
}

.auth-recovery-help {
  margin-top: 20px;
  color: #64706b;
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .auth-recovery-shell {
    width: min(100% - 24px, 560px);
    padding: 24px 0;
  }

  .auth-recovery-card {
    border-radius: 14px;
  }

  .auth-recovery-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .auth-recovery-page *,
  .auth-recovery-page *::before,
  .auth-recovery-page *::after {
    scroll-behavior: auto;
    transition-duration: 0.01ms;
  }
}
