/* Style the form container */
form {
  max-width: 600px;
  margin: 30px auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #add8e6;
  font-family: Arial, sans-serif;
}

/* Label styling */
form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #333;
}

/* Input, select, and textarea styling */
form input[type="text"],
form input[type="email"],
form select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #aaa;
  border-radius: 5px;
  box-sizing: border-box;
}

/* Checkboxes */
form input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 10px;
}

/* Grouping checkboxes neatly */
form label.checkbox-group {
  display: block;
  margin-top: 10px;
}

/* Submit button styling */
form input[type="submit"] {
  margin-top: 20px;
  background-color: #2b7a78;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

form input[type="submit"]:hover {
  background-color: #205e5c;
}
