HTML
  
  <form action="/send" method="get">
    <p>Seleccciona una fecha</p>
    <input type="date" min="2024-11-15" max="2024-12-15">
  </form>
  
CSS
  
    input {
      padding: 8px;
      margin: 1rem 0;
      border: none;
      box-shadow: black 0 0 4px;
    }