/* ─── LOGIN PAGE ─────────────────────────────────── */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

/* Animated background orbs */
.login-page::before,
.login-page::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.login-page::before {
  width: 400px; height: 400px;
  background: var(--purple);
  top: -100px; left: -100px;
}
.login-page::after {
  width: 350px; height: 350px;
  background: var(--blue);
  bottom: -80px; right: -80px;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, 20px); }
}

.login-box {
  width: 100%;
  max-width: 400px;
  position: relative;
  z-index: 1;
}

.login-logo {
  text-align: center;
  margin-bottom: 40px;
}

.login-logo .logo-icon {
  font-size: 64px;
  display: block;
  margin-bottom: 12px;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.login-logo h1 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-light), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.login-logo p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 4px;
}

.login-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: var(--shadow), 0 0 60px rgba(124,92,252,0.08);
}

.login-card h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.login-form .btn {
  margin-top: 8px;
  height: 52px;
  font-size: 16px;
}

.login-error {
  background: rgba(255,77,109,0.1);
  border: 1px solid rgba(255,77,109,0.3);
  color: var(--red-light);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  display: none;
}
.login-error.show { display: block; }

.login-switch {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-muted);
}
.login-switch a {
  color: var(--purple-light);
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}

/* ─── QUICK ACCESS ───────────────────────────────── */
.quick-access {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.quick-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  color: var(--text);
}
.quick-btn:hover {
  border-color: var(--purple);
  background: var(--card2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--purple-glow);
}
.quick-btn .quick-icon { font-size: 36px; }
.quick-btn .quick-label { font-size: 13px; font-weight: 700; color: var(--text-muted); }
.quick-btn .quick-title { font-size: 16px; font-weight: 800; font-family: var(--font-display); }
