#formPrenotazione {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 900px;
    margin: 2rem auto;
  }
  
  #formPrenotazione input,
  #formPrenotazione select,
  #formPrenotazione button {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    flex: 1 1 calc(50% - 1rem);
  }
  
  #formPrenotazione button {
    background-color: #6a00ff;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  #formPrenotazione button:hover {
    background-color: #4e00c8;
  }
  
  #rispostaPrenotazione {
    text-align: center;
    margin-top: 1rem;
    font-weight: bold;
    color: green;
  }
  

  #loginFormPrenotazione {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 3rem auto;
    gap: 1rem;
    padding: 2rem;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 8px;
  }
  
  #loginFormPrenotazione input,
  #loginFormPrenotazione button {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  #loginFormPrenotazione button {
    background-color: #6a00ff;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  #loginFormPrenotazione button:hover {
    background-color: #4e00c8;
  }
  
  #loginResponse {
    text-align: center;
    color: red;
    margin-top: 1rem;
  }
  