body.login-body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: radial-gradient(circle at center, #1f2833 0%, #0b0c10 100%);
}

.login-container {
  width: 100%;
  max-width: 400px;
}

.login-header {
  text-align: center;
  margin-bottom: 30px;
}

.login-header h1 {
  font-size: 2rem;
  margin-bottom: 5px;
  text-shadow: 0 0 10px var(--neon-cyan);
}

.login-header p {
  color: var(--text-main);
  font-size: 0.9rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: var(--neon-cyan-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-login {
  width: 100%;
  margin-top: 10px;
}

#loginError {
  color: var(--neon-red);
  font-size: 0.85rem;
  margin-top: 15px;
  text-align: center;
  min-height: 20px;
}
