/* Blastissimo Coffee — Auth Pages (login, password reset, invites, 2FA) */

body.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 20px;
  background: var(--neve-200);
}

.auth-card {
  width: 100%;
  max-width: 400px;
  background: var(--branco);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: 40px 36px;
}

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

.auth-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 26px;
}

.auth-favicon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
}

.auth-wordmark {
  font: 800 30px/1 var(--font-display);
  letter-spacing: -0.02em;
  color: var(--verde-700);
  margin-bottom: 14px;
}

.auth-title {
  font: 700 21px/1.2 var(--font-display);
  color: var(--tinta-900);
  margin-bottom: 6px;
}

.auth-subtitle {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.5;
}

.auth-footer-link {
  text-align: center;
  font-size: 13px;
  color: var(--color-muted);
  margin-top: 20px;
}

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

.auth-footer-link a:hover {
  text-decoration: underline;
}

/* ── Checkbox rows (2FA "remember this device", backup code confirmation) ── */

.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-check-input {
  width: 18px;
  height: 18px;
  accent-color: var(--verde-600);
}

.form-check-label {
  cursor: pointer;
}

/* ── Small icon badge used on the 2FA pages in place of a photo ── */

.two-factor-icon {
  width: 52px;
  height: 52px;
  background: var(--verde-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 24px;
  color: var(--verde-700);
}

.totp-input,
.backup-input {
  font-family: var(--font-display);
  letter-spacing: 6px;
}

.method-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-hairline);
}

.method-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: background 0.15s;
}

.method-link:hover {
  background: var(--neve-200);
  color: var(--color-text);
}

.method-link i { font-size: 15px; color: var(--verde-600); }
