/* Login page specific styles */body {
  margin: 0;
  background: #111;
  color: #f0f0f0;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.login-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-card {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 40px 30px;
  width: 320px;
  border: 1px solid #2a2a2a; /* subtle border instead of glow */
  box-shadow: none; /* remove the glow entirely */
  text-align: center;
}

.login-logo {
  height: 200px;
  margin-bottom: 30px;
}

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

.login-card input {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #444;
  background: #222;
  color: #fff;
  font-size: 14px;
}

.login-card .btn-gold {
  background: linear-gradient(to bottom, #ffe6bb, #fbcd7e);
  color: #000;
  font-weight: bold;
  border: none;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.login-card .btn-gold:hover {
  background: linear-gradient(to bottom, #fff0cc, #fbd27e);
}

.alert {
  padding: 10px;
  border-radius: 6px;
  font-size: 13px;
  margin-bottom: 20px;
}

.alert.success {
  background-color: #144d2c;
  color: #a0f0b2;
}

.alert.error {
  background-color: #5a1a1a;
  color: #ffb3b3;
}
