/* ======================================================
   LOGIN.CSS  —  Login Page Styles
   ====================================================== */

.auth-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 40px 20px;
  position: relative;
}
.auth-page::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(99,102,241,.14), transparent 60%),
              radial-gradient(ellipse at 70% 70%, rgba(56,189,248,.1), transparent 55%);
  pointer-events: none;
}

.auth-card {
  background: var(--glass); border: 1px solid var(--glass-border); border-radius: 22px;
  padding: 42px 40px; width: 100%; max-width: 440px;
  backdrop-filter: blur(20px);
  animation: scaleIn .5s ease;
  position: relative; z-index: 1;
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
}

.auth-logo {
  display: flex; align-items: center; gap: 12px;
  justify-content: center; margin-bottom: 24px;
}
.auth-logo-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-sky), var(--accent-indigo));
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  animation: glow 3s ease infinite;
}
.auth-logo-text {
  font-size: 28px; font-weight: 700;
  background: linear-gradient(45deg, var(--accent-sky), var(--accent-indigo));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.auth-card h2 {
  font-size: 26px; font-weight: 700; text-align: center; margin-bottom: 6px;
}
.subtitle {
  color: var(--text-muted); font-size: 14px; text-align: center; margin-bottom: 30px;
}

.auth-card .form-group label {
  display: flex; align-items: center; gap: 7px;
}
.auth-card .form-group label i { color: var(--accent-sky); font-size: 12px; }

.auth-footer {
  text-align: center; margin-top: 22px; font-size: 13px; color: var(--text-muted);
}
.auth-footer a { color: var(--accent-sky); text-decoration: none; font-weight: 500; }
.auth-footer a:hover { text-decoration: underline; }
