.password-recovery-dialog {
  width: min(540px, 94vw);
  padding: 42px;
  background: #fffdf9;
}

.password-reset-page { align-items: center; background: #2d0a43; box-sizing: border-box; display: flex; font-family: Arial, sans-serif; justify-content: center; margin: 0; min-height: 100vh; padding: 24px; }
.password-reset-card { background: #fffdf9; box-shadow: 0 18px 50px rgba(0,0,0,.25); color: #2d0a43; max-width: 480px; padding: 40px; width: 100%; }
.password-reset-card h1 { font-family: Georgia, serif; font-size: 36px; margin: 8px 0 14px; }
.password-reset-card p { color: #675b69; line-height: 1.55; }
.password-reset-card form { display: grid; gap: 16px; margin-top: 24px; }
.password-reset-card label { color: #2d0a43; display: grid; font-size: 13px; font-weight: 700; gap: 7px; }
.password-reset-card input { border: 1px solid #d6c8d4; box-sizing: border-box; font: inherit; padding: 12px; width: 100%; }
.password-reset-card button { background: #d9ad3b; border: 0; color: #2d0a43; cursor: pointer; font-weight: 700; padding: 14px; }

.password-recovery-dialog h2 {
  margin: 3px 0 10px;
  color: var(--purple);
  font-size: 35px;
  letter-spacing: -1px;
}

.recovery-contact {
  padding: 17px 18px;
  overflow-wrap: anywhere;
  border-left: 3px solid var(--gold);
  background: #f3ecf8;
}

.recovery-contact small,
.recovery-contact strong {
  display: block;
}

.recovery-contact small {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 10px;
}

.recovery-contact strong {
  color: var(--purple);
  font-size: 14px;
}

.recovery-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.recovery-actions .gold-button {
  grid-column: 1 / -1;
}

.recovery-actions .outline-button {
  text-align: center;
  text-decoration: none;
}

.recovery-status {
  min-height: 18px;
  margin: 13px 0 0;
  color: #276b4f;
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 540px) {
  .password-recovery-dialog {
    padding: 34px 20px 26px;
  }

  .recovery-actions {
    grid-template-columns: 1fr;
  }

  .recovery-actions .gold-button {
    grid-column: auto;
  }
}
