/* 🎧 DJAPP - Login Neon Dark Theme */
body {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  background: radial-gradient(circle at top, #000814, #000);
  color: #00e5ff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.login-card {
  background: rgba(0, 20, 30, 0.9);
  border: 1px solid #00e5ff;
  border-radius: 16px;
  box-shadow: 0 0 20px #00bcd4;
  padding: 40px;
  text-align: center;
  width: 320px;
}

.login-card h1 {
  color: #00ffff;
  text-shadow: 0 0 10px #00e5ff;
  margin-bottom: 25px;
}

.input-group {
  text-align: left;
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  font-size: 0.9em;
  color: #00e5ff;
  margin-bottom: 5px;
}

.input-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #00e5ff;
  border-radius: 10px;
  background-color: #000;
  color: #fff;
  font-family: "Orbitron", sans-serif;
  font-size: 0.95em;
  outline: none;
  transition: all 0.2s ease-in-out;
}

.input-group input:focus {
  border-color: #00ffff;
  box-shadow: 0 0 10px #00ffff;
}

.btn-login {
  background: #00e5ff;
  border: none;
  color: #000;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 10px;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
}

.btn-login:hover {
  background: #00ffff;
  box-shadow: 0 0 20px #00ffff;
}

.error {
  color: #ff1744;
  font-size: 0.9em;
  margin-top: 10px;
}
