.auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  background: radial-gradient(circle at center, #0b0b0d 0%, #1a001a 70%, #000 100%);
  padding: 2rem;
}

.auth-card {
  background: rgba(0, 0, 0, 0.75);
  border-radius: 18px;
  padding: 2.5rem;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 0 25px rgba(255, 117, 24, 0.3);
  text-align: center;
  animation: fadeIn 1s ease-in;
}

.auth-card h1.spooky-text {
  font-family: 'Creepster', cursive;
  color: #ff7518;
  text-shadow: 2px 2px 10px rgba(255, 117, 24, 0.6);
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.auth-card p {
  color: #e0d8c3;
}

form {
  margin-top: 1.5rem;
  text-align: left;
}

label {
  color: #ffdda1;
  font-weight: 500;
  margin-top: 0.5rem;
}

.forgot-password-link {
    color: #ffe07a;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.forgot-password-link:hover {
    color: #ffb84d;
    transform: scale(1.05);
}

.form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 10px;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: #ff7518;
  box-shadow: 0 0 10px #ff7518;
  background: rgba(255, 255, 255, 0.15);
}

.btn-warning {
  background-color: #ff7518;
  border: none;
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.btn-warning:hover {
  background-color: #ffa94d;
  transform: scale(1.05);
  box-shadow: 0 0 10px #ffa94d;
}

a {
  color: #ffdda1;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #ffa94d;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
