/* Contenedor del formulario */

.form-container {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 400px;
}

/* Título */

.form-container h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
}

/* Etiquetas */

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #ccc;
}

/* Campos de entrada */

input[type="text"], input[type="email"], input[type="password"], input[type="date"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #333;
  border-radius: 4px;
  background-color: #2a2a2a;
  color: #fff;
  font-size: 14px;
}

/* Botón */

button {
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0056b3;
}

