/* ================================================
   Pulsoid Password Reset Page Styles
   ================================================ */

/* ================================================
   Base
   ================================================ */

.reset-page {
  background: var(--background);
  font-family: var(--font-family);
  color: var(--text-secondary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ================================================
   Section
   ================================================ */

.reset-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  padding: 80px 24px;
  background: linear-gradient(180deg, #0a0a0e 0%, #101015 50%, #0a0a0e 100%);
}

/* ================================================
   Card (form pages)
   ================================================ */

.reset-card {
  width: 100%;
  max-width: 480px;
  border: 1px solid var(--border-1);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
}

/* ================================================
   Title & Subtitle
   ================================================ */

.reset-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px;
}

.reset-subtitle {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 32px;
}

/* ================================================
   Form
   ================================================ */

.reset-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* ================================================
   Input
   ================================================ */

.reset-input-group {
  width: 100%;
}

.reset-input {
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid var(--brand-teal);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 15px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
}

.reset-input::placeholder {
  color: var(--text-muted);
}

.reset-input:focus {
  border-color: var(--brand-teal-light);
  box-shadow: 0 0 0 3px var(--brand-teal-glow);
}

/* ================================================
   Captcha
   ================================================ */

.reset-captcha {
  display: flex;
  justify-content: center;
}

/* ================================================
   Button
   ================================================ */

.reset-button {
  display: inline-block;
  padding: 14px 48px;
  background: linear-gradient(135deg, var(--brand-teal) 0%, #059e95 100%);
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px var(--brand-teal-glow);
}

.reset-button:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--brand-teal-light) 0%, var(--brand-teal) 100%);
  box-shadow: 0 6px 30px var(--brand-teal-glow);
  transform: translateY(-1px);
}

.reset-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

/* ================================================
   Link
   ================================================ */

.reset-link {
  color: var(--brand-teal);
  text-decoration: none;
  transition: color 0.25s ease;
}

.reset-link:hover {
  color: var(--brand-teal-light);
  text-decoration: none;
}

/* ================================================
   Message (info pages)
   ================================================ */

.reset-message {
  max-width: 600px;
  text-align: center;
}

.reset-message-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 20px;
}

.reset-message-body {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 12px;
}

/* ================================================
   Highlight
   ================================================ */

.reset-highlight {
  color: var(--brand-teal);
}

/* ================================================
   Responsive
   ================================================ */

@media (max-width: 540px) {
  .reset-card {
    padding: 36px 24px;
  }

  .reset-title,
  .reset-message-title {
    font-size: 24px;
  }
}
