/* login-user.css */

body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #1f1f1f, #292929);
  color: #fff;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-auth-section {
  width: 100%;
  max-width: 400px;
  padding: 2rem;
}

.auth-card {
  background-color: #121212;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
  animation: fadeIn 0.8s ease-out;
}

.auth-title {
  text-align: center;
  font-size: 1.8rem;
  color: #ffc107;
  margin-bottom: 0.3rem;
}

.auth-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 1.5rem;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

input {
  padding: 0.6rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 6px;
  background: #1e1e1e;
  color: #fff;
}

input::placeholder {
  color: #888;
}

.btn-primary {
  background-color: #ffc107;
  color: #000;
  border: none;
  padding: 0.7rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #e0a800;
}

.btn-google {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 0.7rem;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.divider {
  text-align: center;
  margin: 1rem 0;
  color: #aaa;
  font-size: 0.9rem;
}

.auth-switch {
  font-size: 0.85rem;
  text-align: center;
  margin-top: 1rem;
}

.auth-switch a {
  color: #ffc107;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}

.hidden {
  display: none;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s forwards ease;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
