form {
    font-family: Arial, sans-serif;
    max-width: 400px;
    margin: 0 auto;
  }
  
  /* Style the fieldset */
  fieldset {
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 20px;
  }
  
  /* Style the legend */
  legend {
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  /* Style the label */
  label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  /* Style the input fields */
  input[type="text"],
  input[type="date"],
  input[type="email"],
  input[type="url"],
  input[type="text"][pattern="\d+(\.\d{2})?"],
  input[list] {
    width: calc(100% - 12px);
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }
  
  /* Style the submit button */
  input[type="submit"] {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
