/* ═══ AUTH PAGES ═══ */
.auth-page {
  min-height: calc(100vh - 65px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-8);
}
.auth-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--sp-10);
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.auth-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent-cyan), var(--accent-pink));
}
.auth-card__title { font-size: var(--text-2xl); font-weight: 800; margin-bottom: var(--sp-2); text-align: center; }
.auth-card__subtitle { font-size: var(--text-sm); color: var(--text-secondary); text-align: center; margin-bottom: var(--sp-8); }
.auth-divider { display: flex; align-items: center; gap: var(--sp-4); margin: var(--sp-6) 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-divider span { font-size: var(--text-sm); color: var(--text-muted); }
.auth-discord-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  width: 100%;
  padding: 12px;
  border-radius: var(--radius);
  background: #5865F2;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: var(--text-sm);
  transition: all var(--duration);
  text-decoration: none;
}
.auth-discord-btn:hover { background: #4752c4; transform: translateY(-1px); color: #fff; }
.auth-footer { text-align: center; margin-top: var(--sp-6); font-size: var(--text-sm); color: var(--text-secondary); }
.auth-footer a { color: var(--primary); font-weight: 600; }

/* ── Mobile Optimizations ── */
@media (max-width: 480px) {
  .auth-page {
    padding: var(--sp-4);
  }
  
  .auth-card {
    padding: var(--sp-8) var(--sp-5);
    border-radius: var(--radius-lg);
  }
  
  .auth-card__title {
    font-size: var(--text-xl);
  }
}
