/* Style the form to look clean and modern */
    form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    /* Make form fields 80% of the content div's width */
    input, textarea, select {
      width: 80%;
      padding: 10px;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 5px;
      box-sizing: border-box;
    }

    /* Style labels for better readability */
    label {
      font-size: 16px;
      font-weight: bold;
      margin-bottom: 5px;
    }

    /* Style the submit button */
    button {
      width: 25%;
      padding: 10px;
      background-color: #007bff;
      color: white;
      border: none;
      border-radius: 5px;
      font-size: 16px;
      cursor: pointer;
      transition: background-color 0.3s;
      align-self: center;
    }

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

    /* Add some spacing for form groups */
    .form-group {
      display: flex;
      flex-direction: column;
    }