/* ═══════════════════════════════════════════════
   ScoreCaster v4 — Auth Pages
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&display=swap');

.auth-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(0deg, #004cff 0%, #1e293b 50%, #000000 100%);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.auth-page::before {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
  animation: authBgFloat 20s ease-in-out infinite;
}

@keyframes authBgFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-2%, 2%); }
}

.auth-card {
  position: relative;
  width: 100%; max-width: 420px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  animation: authCardIn 0.5s ease-out;
}

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

.auth-brand {
  text-align: center; margin-bottom: 2rem;
}

.auth-brand svg {
  margin: 0 auto 0.75rem;
}

.auth-brand h1 {
  font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
  font-size: 2.25rem; font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.auth-brand h1 span { color: #10b981; }

.auth-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}

.auth-card .form-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
}

.auth-card .form-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.9375rem;
}

.auth-card .form-input:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  background: rgba(255,255,255,0.08);
}

.auth-card .form-input::placeholder {
  color: rgba(255,255,255,0.3);
}

.auth-card .btn-primary {
  width: 100%;
  padding: 0.75rem;
  font-size: 0.9375rem;
  border-radius: 10px;
  background: #10b981;
  border-color: #10b981;
}

.auth-card .btn-primary:hover {
  background: #059669;
  border-color: #059669;
}

.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}

.auth-footer a {
  color: #10b981;
  font-weight: 500;
}

.auth-footer a:hover {
  color: #34d399;
}

.auth-checkbox {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
}

.auth-checkbox input {
  accent-color: #10b981;
  width: 1rem; height: 1rem;
}
