/* Style the form label */
form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

/* Style the text input fields */
form input[type="text"], form textarea {
  display: block;
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 16px;
  font-family: Arial, sans-serif;
}

/* Style the select dropdowns */
form select {
  display: block;
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('dropdown-arrow.png');
  background-repeat: no-repeat;
  background-position: right center;
}

/* Style the submit button */
form button[type="submit"] {
  display: block;
  margin-top: 20px;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  background-color: #4286f4;
  color: #fff;
  font-size: 16px;
  font-family: Arial, sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Hover state for the submit button */
form button[type="submit"]:hover {
  background-color: #3275f4;
}

.success {
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f7f7f7;
  text-align: center;
  margin-top: 20px;
}

.success h1 {
  font-size: 24px;
  color: #4286f4;
  margin-bottom: 10px;
}

.success p {
  font-size: 16px;
  margin-bottom: 20px;
}

.success a {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #4286f4;
  border-radius: 4px;
  background-color: #4286f4;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.success a:hover {
  background-color: #3275f4;
}

