/**
 * Visual alignment with the BaZiWar mobile app's onboarding/login screens:
 * warm dark gradient, gold accent, soft 22px rounded controls, uppercase
 * field labels. Scoped to .auth-body so it never touches the rest of the site.
 */
.auth-body {
  background: var(--app-bg-grad);
}

.auth-body .auth-card {
  border-radius: 22px;
  background: var(--app-card);
  border-color: var(--app-card-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.auth-body .auth-input {
  border-radius: 14px;
  min-height: 54px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.auth-body .auth-label {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--app-text-dim);
}

.auth-body .site-btn {
  border-radius: 22px;
  min-height: 54px;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0.01em;
}

.auth-body .site-btn-ghost.auth-oauth-btn {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.auth-body .auth-divider {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--app-text-dim);
}

.auth-body .auth-notice,
.auth-body .auth-field-note {
  border-radius: 14px;
}
