.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #14102A;
  padding: var(--space-md);
}

.login-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: floatBlob 14s ease-in-out infinite;
}
.login-blob.b1 {
  width: 420px; height: 420px;
  background: var(--grad-violet);
  top: -100px; left: -100px;
}
.login-blob.b2 {
  width: 380px; height: 380px;
  background: var(--grad-blue);
  bottom: -120px; right: -80px;
  animation-delay: -5s;
}
.login-blob.b3 {
  width: 260px; height: 260px;
  background: var(--grad-pink);
  bottom: 10%; left: 8%;
  animation-delay: -9s;
}

.login-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-lg);
}

.login-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: var(--space-lg);
  text-align: center;
}
.login-brand .logo-badge {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--grad-violet);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.5rem; font-weight: 700;
  box-shadow: var(--shadow-glow-violet);
  margin-bottom: 10px;
}
.login-brand h1 { font-size: 1.3rem; }
.login-brand p { color: var(--text-muted); font-size: 0.85rem; }

.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  margin-bottom: var(--space-lg);
  color: var(--text-muted);
}
.form-options a { color: var(--color-primary); font-weight: 600; }

.btn-login {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 0.95rem;
}

.login-footer-note {
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: var(--space-lg);
}
