/* ===============================
   Estilos para Login y Registro
   =============================== */

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

/* Contenedor principal */
.auth-container {
  background: #111;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

/* Título */
.auth-container h2 {
  margin-bottom: 25px;
  color: #ffcc00;
  font-size: 1.8em;
}

/* Campos de entrada */
.auth-container input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 6px;
  background: #222;
  color: #fff;
  font-size: 1em;
  outline: none;
  transition: background 0.3s ease;
}

.auth-container input:focus {
  background: #333;
}

/* Botón principal */
.auth-container button {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: none;
  border-radius: 6px;
  background-color: #ffcc00;
  color: #000;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.auth-container button:hover {
  background-color: #ffd633;
  transform: scale(1.03);
}

/* Enlace de registro */
.auth-container p {
  margin-top: 15px;
  color: #ccc;
}

.auth-container a {
  color: #ffcc00;
  text-decoration: none;
  font-weight: bold;
}

.auth-container a:hover {
  text-decoration: underline;
}

/* Animación al aparecer */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.auth-container {
  animation: fadeIn 0.5s ease;
}
