/* ── AUTH SCREENS ─────────────────────────────────────── */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ubora-secondary-dark) 0%, var(--ubora-secondary) 50%, var(--ubora-primary-dark) 100%);
  padding: 1rem;
  position: relative;
  overflow: hidden;
}
.auth-wrapper::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.auth-box {
  width: 100%; max-width: 420px;
  background: var(--ubora-surface);
  border-radius: var(--ubora-radius-lg);
  box-shadow: var(--ubora-shadow-lg);
  padding: 2.5rem;
  position: relative; z-index: 1;
}
.auth-logo {
  text-align: center; margin-bottom: 2rem;
}
.auth-logo h1 {
  font-size: 1.8rem; font-weight: 800;
  color: var(--ubora-secondary);
  letter-spacing: -0.02em;
}
.auth-logo h1 span { color: var(--ubora-primary); }
.auth-logo .badge-club {
  display: inline-block;
  background: var(--ubora-accent-soft);
  color: #92680a;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  margin-top: 0.3rem;
}
.auth-title { font-size: 1.2rem; font-weight: 700; color: var(--ubora-secondary); margin-bottom: 0.3rem; }
.auth-subtitle { font-size: 0.85rem; color: var(--ubora-text-soft); margin-bottom: 1.75rem; }
.auth-footer { text-align: center; margin-top: 1.5rem; font-size: 0.8rem; color: var(--ubora-text-soft); }
