body.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(110, 91, 255, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(34, 184, 160, 0.08) 0%, transparent 50%),
    linear-gradient(165deg, #0A0F1E 0%, #0D1528 50%, #0A1020 100%);
  background-attachment: fixed;
}

.login-card {
  width: 100%;
  max-width: 400px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow), var(--glow-indigo);
  padding: 36px 32px 32px;
}

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

.login-logo .l1,
.login-logo .l2 {
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.login-logo .l1 {
  color: var(--text);
}

.login-logo .l2 {
  color: var(--teal);
}

.login-logo-sub {
  font-size: 10px;
  color: var(--text-3);
  margin-top: 6px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--bg-sidebar);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--indigo);
  background: var(--surface-raised);
  box-shadow: 0 0 0 3px rgba(110, 91, 255, 0.18);
}

.form-group input::placeholder {
  color: var(--text-3);
}

.btn-login {
  margin-top: 8px;
  width: 100%;
  padding: 13px 16px;
  border: none;
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, var(--teal), var(--indigo));
  box-shadow: 0 4px 16px rgba(110, 91, 255, 0.25);
  transition: opacity 0.15s, transform 0.15s, box-shadow 0.15s;
}

.btn-login:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(110, 91, 255, 0.35);
}

.login-error {
  display: none;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--coral-light);
  color: var(--coral);
  font-size: 12px;
  text-align: center;
  border: 1px solid rgba(242, 107, 91, 0.25);
}

.login-error.visible {
  display: block;
}

.login-note {
  margin-top: 20px;
  text-align: center;
  font-family: 'Caveat', cursive;
  font-size: 16px;
  color: var(--text-3);
}
