/* Estilo general */
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(-45deg, #1e1e1e, #2c2c2c, #1e1e1e, #2c2c2c);
  background-size: 400% 400%;
  animation: fondoAnimado 10s ease infinite;
  color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

/* Contenedor centrado */
.contenedor {
  max-width: 400px;
  width: 90%;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Título */
.contenedor h2 {
  margin-bottom: 20px;
}

/* Mensaje de error */
.error {
  color: #ff4d4d;
  margin-bottom: 15px;
}

/* Etiquetas y campos de entrada */
label {
  display: block;
  text-align: left;
  margin: 10px 0 5px;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  margin-bottom: 15px;
  background-color: #333;
  color: #fff;
}

/* Botón de envío */
input[type="submit"] {
  width: 100%;
  padding: 10px;
  background-color: #38d39f;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.5s ease;
}

input[type="submit"]:hover {
  background-color: #2ebd89;
}

/* Animación de fondo */
@keyframes fondoAnimado {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Responsividad */
@media (max-width: 600px) {
  .contenedor {
    padding: 15px;
  }
}
