/* =====================================================
   LMS ABC — login.css
   Estilos exclusivos para la página de Login
   ===================================================== */

#page-login {
  align-items: center;
  justify-content: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* Orbes decorativos de fondo */
#page-login::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,99,255,0.15) 0%, transparent 70%);
  top: -200px; left: -200px;
  animation: pulse 6s ease-in-out infinite;
}
#page-login::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,101,132,0.1) 0%, transparent 70%);
  bottom: -150px; right: -100px;
  animation: pulse 8s ease-in-out infinite reverse;
}

/* Card principal */
.login-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  width: 420px;
  max-width: 95vw;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow);
  animation: fadeUp 0.6s ease;
}

.login-logo {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.login-card h1  { font-size: 28px; margin-bottom: 6px; }
.login-card > p { color: var(--text2); font-size: 14px; margin-bottom: 32px; }

.login-error {
  color: var(--accent2);
  font-size: 13px;
  margin-top: 10px;
  display: none;
}

.login-hint {
  font-size: 12px;
  color: var(--text3);
  margin-top: 16px;
  text-align: center;
}

.login-public {
  margin-top: 16px;
  text-align: center;
}
