/* Estilos CSS */
.formulario-container {
  max-width: 700px;
  margin: 50px auto; /* Establecer el margen superior e inferior a 50px y el margen horizontal a "auto" */
  background-color: #000;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

  h2 {
    text-align: center;
  }
  form {
    max-width: 500px;
    margin: 0 auto;
  }
  label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 30px;
  }
  input[type="text"],
  input[type="date"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }
  button[type="submit"] {
    background-color: #4CAF50;
    color: white;
    font-size: 25px;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    
  }
  button[type="submit"]:hover {
    background-color: #45a049;
  }
  #nombre {
    font-size: 38px;
    border: 2px solid hsl(0, 90%, 47%);
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    background-color: hsl(200, 10%, 94%);
    color: #333;
    transition: border-color 0.3s ease;
  }
  
  #nombre:focus {
    border-color: #66afe9;
    box-shadow: 0 0 5px #02040580;
  }
  
  #telefono {
    font-size: 35px;
    border: 2px solid hsl(0, 93%, 48%);
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    background-color: hsl(192, 26%, 96%);
    color: #333;
    transition: border-color 0.3s ease;
  }
  
  #telefono:focus {
    border-color: #4106cc;
    box-shadow: 0 0 5px rgba(3, 10, 15, 0.5);
  }
  #fecha{
    font-size: 35px;
    border: 2px solid hsl(0, 93%, 48%);
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    background-color: hsl(180, 2%, 90%);
    color: #333;
    transition: border-color 0.3s ease;
  }