/* assets/styles/auth-reset.css */

.reset-password-page {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 16px 40px;
  position: relative;
}

.reset-password-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 122, 24, 0.18), transparent 28%),
    radial-gradient(circle at 50% 78%, rgba(255, 184, 76, 0.14), transparent 32%);
}

.reset-password-panel {
  width: min(92vw, 460px);
  padding: 44px 24px 24px;
  z-index: 1;
}

.reset-password-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.reset-password-helper-link {
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: underline;
}

.reset-password-helper-link:hover {
  color: var(--text-color);
}

.reset-password-kicker {
  margin: 0 0 10px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.reset-password-title {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 5vw, 3.3rem);
  line-height: 0.92;
}

.reset-password-copy {
  margin: 0 0 22px;
  color: rgba(var(--text-color-rgb), 0.78);
  line-height: 1.6;
  font-size: 13px;
  text-align: center;
}

.reset-password-form {
  display: flex;
  margin-top: 0;
}

.reset-password-submit {
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.reset-password-feedback {
  margin-bottom: 14px;
  text-align: center;
}

.reset-password-empty-state {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.reset-password-empty-copy {
  margin: 0;
  color: rgba(var(--text-color-rgb), 0.78);
  line-height: 1.6;
  text-align: center;
}

.reset-password-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.reset-password-links {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.reset-password-close {
  text-decoration: none;
}

.reset-password-close:hover {
  color: var(--text-color);
}

.reset-password-links .reset-password-helper-link {
  font-size: 12px;
  opacity: 0.8;
}

@media (max-width: 767px) {
  .reset-password-page {
    padding-top: 16px;
    padding-bottom: 24px;
  }

  .reset-password-panel {
    padding: 22px 16px 18px;
    border-radius: 14px;
  }

  .reset-password-title {
    font-size: clamp(2rem, 12vw, 2.6rem);
  }

  .reset-password-links {
    gap: 10px;
  }
}
