/* =============================================
   RemindMail — Login Page Styles
   ============================================= */

.login-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Animated background orbs */
.login-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
}
.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--accent);
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}
.orb-2 {
  width: 350px;
  height: 350px;
  background: var(--blue);
  bottom: -100px;
  left: -80px;
  animation-delay: -3s;
}
.orb-3 {
  width: 250px;
  height: 250px;
  background: var(--purple);
  top: 40%;
  left: 30%;
  animation-delay: -5s;
  opacity: 0.08;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

/* Login container */
.login-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 420px;
  padding: 24px;
  animation: fadeInUp 0.6s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes fadeInUp {
  from { opacity:0; transform: translateY(28px); }
  to   { opacity:1; transform: none; }
}

/* Brand */
.login-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}
.login-brand .brand-icon {
  width: 42px;
  height: 42px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-brand .brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
}

/* Card */
.login-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 36px 28px;
  box-shadow: var(--shadow-lg);
}

.login-header {
  margin-bottom: 28px;
}
.login-header h1 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}
.login-header p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-top: 6px;
}

/* Form */
#loginForm .form-group { margin-bottom: 20px; }

.login-hint {
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 20px;
}
.login-hint code {
  background: var(--bg-hover);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--accent);
}

/* Responsive */
@media (max-width: 480px) {
  .login-card { padding: 28px 20px 20px; }
}
