/* Auth pages — polished card layout using app theme variables. */

/* ─── Background ─── */
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin: 0;
  color: var(--color-text);
  min-height: 100vh;
  background:
    radial-gradient(ellipse 90% 60% at 15% -5%,  rgba(4, 82, 39, 0.22), transparent 58%),
    radial-gradient(ellipse 60% 50% at 85%  0%,  rgba(4, 82, 39, 0.13), transparent 52%),
    radial-gradient(ellipse 70% 55% at 95%  85%, rgba(4, 82, 39, 0.10), transparent 55%),
    radial-gradient(ellipse 50% 40% at  5%  95%, rgba(4, 82, 39, 0.08), transparent 55%),
    var(--color-bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(4, 82, 39, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 82, 39, 0.028) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ─── Wrapper ─── */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

/* ─── Card ─── */
.auth-card {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  box-shadow:
    0 0 0 1px rgba(4, 82, 39, 0.07),
    0 2px 4px  rgba(0, 0, 0, 0.04),
    0 14px 36px rgba(0, 0, 0, 0.11),
    0 48px 80px rgba(0, 0, 0, 0.07),
    0 64px 100px rgba(4, 82, 39, 0.05);
  padding: 40px 36px 36px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  animation: authCardIn 0.42s cubic-bezier(0.16, 1, 0.3, 1) both;
}

[data-theme="dark"] .auth-card {
  background: rgba(16, 25, 18, 0.96);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 0 1px rgba(45, 168, 94, 0.10),
    0 2px 4px  rgba(0, 0, 0, 0.25),
    0 20px 50px rgba(0, 0, 0, 0.50),
    0 50px 80px rgba(0, 0, 0, 0.40);
}

.auth-card--wide {
  max-width: 560px;
}

@keyframes authCardIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.975);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ─── Brand ─── */
.auth-brand {
  text-align: center;
  margin-bottom: 20px;
}

/* Icon mark shown on the login / register cards */
.auth-icon-mark {
  width: 52px;
  height: 52px;
  background: linear-gradient(145deg, #06843f 0%, #045227 55%, #033f1e 100%);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 4px 8px  rgba(4, 82, 39, 0.25),
    0 10px 26px rgba(4, 82, 39, 0.22);
}

.auth-icon-mark svg {
  width: 26px;
  height: 26px;
}

.auth-logo {
  width: 160px;
  height: auto;
  display: block;
  margin: 0 auto 14px auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.auth-title {
  margin: 0 0 6px 0;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--color-heading);
  text-align: center;
  line-height: 1.2;
}

.auth-subtitle {
  margin: 0 0 20px 0;
  color: var(--color-text-muted);
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
}

/* ─── Form grid ─── */
.auth-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 640px) {
  .auth-grid--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: 0;
}

.auth-card label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--color-text);
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ─── Inputs ─── */
.auth-card input[type="text"],
.auth-card input[type="email"],
.auth-card input[type="password"] {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1.5px solid var(--input-border);
  border-radius: 12px;
  font-size: 14px;
  outline: none;
  background: var(--input-bg);
  color: var(--color-text);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  box-sizing: border-box;
}

.auth-card input::placeholder {
  color: var(--color-text-muted);
  opacity: 0.55;
}

.auth-card input:focus {
  border-color: var(--color-primary);
  box-shadow: var(--focus-ring);
  background: var(--input-bg);
}

[data-theme="dark"] .auth-card input[type="text"],
[data-theme="dark"] .auth-card input[type="email"],
[data-theme="dark"] .auth-card input[type="password"] {
  border-color: rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .auth-card input:focus {
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.07);
}

.input-invalid {
  border-color: var(--color-danger) !important;
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.12) !important;
}

/* ─── Password toggle ─── */
.auth-input-wrap {
  position: relative;
}

.auth-input-wrap input {
  padding-right: 46px;
}

.auth-password-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--color-text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.12s ease;
}

.auth-password-toggle:hover {
  background: rgba(4, 82, 39, 0.08);
  color: var(--color-primary);
}

[data-theme="dark"] .auth-password-toggle:hover {
  background: rgba(45, 168, 94, 0.12);
}

.auth-password-toggle:active {
  transform: translateY(-50%) scale(0.90);
}

.auth-password-toggle svg {
  width: 17px;
  height: 17px;
}

/* ─── Inline error ─── */
.inline-error {
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(185, 28, 28, 0.25);
  background: var(--color-danger-bg);
  color: var(--color-danger-text);
  font-size: 12px;
  line-height: 1.35;
}

/* ─── Buttons ─── */
.btn {
  width: 100%;
  height: 46px;
  padding: 0 16px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.14s ease, box-shadow 0.18s ease, opacity 0.15s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(145deg, #06843f 0%, #045227 55%, #033f1e 100%);
  color: #fff;
  letter-spacing: 0.01em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 1px 2px  rgba(0, 0, 0, 0.10),
    0 8px 22px  rgba(4, 82, 39, 0.30);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.13) 0%, transparent 55%);
  border-radius: inherit;
  pointer-events: none;
}

.btn-primary:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 2px 4px  rgba(0, 0, 0, 0.12),
    0 14px 32px rgba(4, 82, 39, 0.36);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 1px 2px rgba(0, 0, 0, 0.10),
    0 4px 12px rgba(4, 82, 39, 0.20);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.btn-primary.btn--loading {
  pointer-events: none;
  opacity: 0.75;
}

/* Google sign-in */
.btn-google {
  width: 100%;
  height: 46px;
  padding: 0 16px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
  margin-top: 10px;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.14s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  position: relative;
}

.btn-google:hover {
  background: var(--color-surface) !important;
  background-color: var(--color-surface) !important;
  border-color: rgba(4, 82, 39, 0.28);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.10);
  transform: translateY(-1px);
}

.btn-google:active {
  background: var(--color-surface-alt) !important;
  background-color: var(--color-surface-alt) !important;
  transform: translateY(0);
}

.btn-google:focus-visible {
  outline: 2px solid rgba(107, 114, 128, 0.45);
  outline-offset: 2px;
}

.btn-google img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

a.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* ─── Divider ─── */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 4px;
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  flex: 1 1 0;
  background: var(--color-border);
}

/* ─── Link row ─── */
.auth-link-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
  font-size: 13px;
}

.auth-link-row a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.15s ease;
}

.auth-link-row a:hover {
  opacity: 0.72;
}

/* ─── Footer ─── */
.auth-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
}

.auth-footer a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: 700;
}

.auth-footer a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

/* ─── Verify pages ─── */
.verify-card {
  text-align: center;
}

.verify-badge {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 6px auto 14px auto;
  border: 1px solid var(--color-border);
}

.verify-badge svg {
  width: 30px;
  height: 30px;
}

.verify-badge--success {
  background: var(--color-success-bg);
  color: var(--color-success-text);
  border-color: rgba(4, 82, 39, 0.25);
}

.verify-badge--warning {
  background: var(--color-warning-bg);
  color: var(--color-warning-text);
  border-color: rgba(217, 119, 6, 0.25);
}

.verify-badge--info {
  background: var(--color-info-bg);
  color: var(--color-info-text);
  border-color: rgba(29, 78, 216, 0.20);
}

.verify-badge--error {
  background: var(--color-danger-bg);
  color: var(--color-danger-text);
  border-color: rgba(185, 28, 28, 0.20);
}

.verify-title {
  margin: 0 0 8px 0;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.2px;
}

.verify-subtitle {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: var(--color-text-muted);
}

.verify-body {
  margin: 0 0 18px 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--color-text);
}

.verify-actions {
  display: grid;
  gap: 10px;
  margin-top: 2px;
}

.verify-secondary {
  display: inline-block;
  font-size: 13px;
  color: var(--link-color);
  text-decoration: none;
}

.verify-secondary:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

.verify-micro {
  margin: 14px 0 0 0;
  font-size: 12px;
  color: var(--color-text-muted);
}

/* ─── Maintenance page ─── */
body.maintenance-page {
  background: var(--color-bg);
}

body.maintenance-page::before {
  display: none;
}

.maintenance-wrapper {
  padding: 24px 16px;
}

.maintenance-card {
  width: 100%;
  max-width: 360px;
  background: var(--color-surface);
  border: 0.5px solid var(--color-border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.maintenance-logo-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-bottom: 28px;
}

.maintenance-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #1a5c35;
  color: var(--color-surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.maintenance-logo-mark svg {
  width: 18px;
  height: 18px;
}

.maintenance-logo-text {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--color-text);
}

.maintenance-shield {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: #eaf4ee;
  color: #1a5c35;
  display: flex;
  align-items: center;
  justify-content: center;
}

.maintenance-shield svg {
  width: 24px;
  height: 24px;
}

.maintenance-headline {
  margin: 0 0 12px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text);
}

.maintenance-subtext {
  margin: 0 0 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.maintenance-panel {
  padding: 1.25rem;
  border-radius: 12px;
  background: var(--color-surface-alt);
  margin-bottom: 24px;
}

.maintenance-panel-label {
  margin: 0 0 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
}

.maintenance-panel-date {
  margin: 0 0 20px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
}

.maintenance-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.maintenance-timer-unit {
  min-width: 72px;
  text-align: center;
}

.maintenance-timer-value {
  display: block;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  color: #1a5c35;
  font-variant-numeric: tabular-nums;
}

.maintenance-timer-unit-label {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 400;
  color: var(--color-text-muted);
}

.maintenance-timer-divider {
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-text-muted);
  transform: translateY(-6px);
}

.maintenance-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-muted);
}

.maintenance-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #1a5c35;
  animation: maintenancePulse 1.8s infinite;
}

.maintenance-footer-note {
  margin: 0;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-muted);
}

.maintenance-text-link {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-muted);
  text-decoration: none;
}

.maintenance-text-link:hover {
  color: var(--link-color);
  text-decoration: underline;
}

@keyframes maintenancePulse {
  0%   { opacity: 1; }
  50%  { opacity: 0.3; }
  100% { opacity: 1; }
}

/* ─── Alerts ─── */
.error {
  background: var(--color-danger-bg);
  color: var(--color-danger-text);
  padding: 11px 14px;
  border-radius: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  border: 1px solid rgba(185, 28, 28, 0.22);
  line-height: 1.4;
}

.success {
  background: var(--color-success-bg);
  color: var(--color-success-text);
  padding: 11px 14px;
  border-radius: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  border: 1px solid rgba(4, 82, 39, 0.25);
  line-height: 1.4;
}

/* ─── Toast stack ─── */
.auth-toast-stack {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.auth-toast {
  pointer-events: auto;
  min-width: 260px;
  max-width: 360px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-text);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(-6px);
  opacity: 0;
  animation: authToastIn 180ms ease forwards;
}

.auth-toast--error {
  background: rgba(254, 226, 226, 0.92);
  border-color: rgba(185, 28, 28, 0.22);
  color: var(--color-danger-text);
}

.auth-toast--success {
  background: rgba(232, 245, 233, 0.92);
  border-color: rgba(4, 82, 39, 0.25);
  color: var(--color-success-text);
}

@keyframes authToastIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ─── Register page extras ─── */
.auth-reg-divider {
  height: 1px;
  background: var(--color-border);
  margin: 4px 0;
}

.auth-strength-bar {
  height: 3px;
  border-radius: 999px;
  background: transparent;
  margin-top: 8px;
  overflow: hidden;
}

.auth-strength-bar__fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  transition: width 0.25s ease, background 0.25s ease;
}

/* ─── Username label row + generate button ─── */
.auth-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.auth-label-row label {
  margin-bottom: 0 !important;
}

.auth-generate-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px 3px 8px;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-primary);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.12s ease;
  line-height: 1;
}

.auth-generate-link:hover {
  background: rgba(4, 82, 39, 0.07);
  border-color: rgba(4, 82, 39, 0.30);
}

[data-theme="dark"] .auth-generate-link:hover {
  background: rgba(45, 168, 94, 0.10);
  border-color: rgba(45, 168, 94, 0.28);
}

.auth-generate-link:active {
  transform: scale(0.94);
}

.auth-generate-link svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.auth-generate-link.spinning svg {
  animation: authGenSpin 0.52s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes authGenSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.auth-username-hint {
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.4;
  display: none;
}

.auth-username-hint.hint--error { display: block; color: var(--color-danger-text); }
.auth-username-hint.hint--ok    { display: block; color: var(--color-success-text); }
.auth-username-hint.hint--info  { display: block; color: var(--color-text-muted); }

.input-valid {
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 3px rgba(4, 82, 39, 0.10) !important;
}

[data-theme="dark"] .input-valid {
  box-shadow: 0 0 0 3px rgba(45, 168, 94, 0.14) !important;
}

/* ─── Password group wrapper ─── */
.auth-pw-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ─── Segmented strength bar ─── */
.auth-strength-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.auth-strength-segments {
  display: flex;
  gap: 5px;
  flex: 1;
}

.auth-strength-seg {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: var(--color-border);
  transition: background 0.28s ease;
}

.auth-strength-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  min-width: 68px;
  text-align: right;
  transition: color 0.28s ease;
  white-space: nowrap;
}

/* ─── Password criteria checklist ─── */
.auth-pw-criteria {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}

.auth-pw-criterion {
  font-size: 11.5px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 7px;
  line-height: 1.2;
  transition: color 0.22s ease;
}

.auth-pw-criterion::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  flex-shrink: 0;
  box-sizing: border-box;
  transition: border-color 0.22s ease, background-color 0.22s ease;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px 7px;
}

.auth-pw-criterion.met {
  color: #15803d;
}

.auth-pw-criterion.met::before {
  border-color: #16a34a;
  background-color: #16a34a;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-5' stroke='white' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}

[data-theme="dark"] .auth-pw-criterion.met {
  color: #4ade80;
}

[data-theme="dark"] .auth-pw-criterion.met::before {
  border-color: #22c55e;
  background-color: #22c55e;
}

/* ─── Google sign-in loading page ─── */
.gsignin-loading {
  text-align: center;
  padding: 12px 0 4px;
}

.gsignin-spinner-wrap {
  position: relative;
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
}

.gsignin-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2.5px solid var(--color-border);
  border-top-color: #4285F4;
  animation: gsigninSpin 0.85s linear infinite;
}

.gsignin-logo {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 34px;
  height: 34px;
}

.gsignin-hint {
  margin: 10px auto 0;
  max-width: 300px;
  font-size: 12.5px;
  color: var(--color-text-muted);
  line-height: 1.55;
}

@keyframes gsigninSpin {
  to { transform: rotate(360deg); }
}


/* ─── Resend-verification extras ─── */
.error::before, .success::before {
  margin-right: 8px;
  font-weight: 600;
}
.error::before  { content: "⚠ "; }
.success::before { content: "✓ "; }

.form-help-text {
  margin-top: 4px;
  padding: 0;
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.expected-steps {
  margin-top: 16px;
  padding: 12px 14px;
  background: var(--color-success-bg);
  border: 1px solid rgba(55, 165, 55, 0.25);
  border-radius: 8px;
  font-size: 12px;
  color: var(--color-success-text);
  line-height: 1.5;
}
.expected-steps strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

/* ─── Register-confirmation extras ─── */
.verify-actions a {
  display: inline-block;
  margin-bottom: 8px;
  width: 100%;
}

.verification-summary {
  margin: 16px 0;
  padding: 12px 14px;
  background: var(--color-info-bg);
  border: 1px solid rgba(29, 78, 216, 0.20);
  border-radius: 8px;
  font-size: 12px;
  color: var(--color-info-text);
  line-height: 1.5;
}
.verification-summary strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}
