
/* Submit button styling to match site CTAs */
.webform-submission-form input[type="submit"],
.webform-submission-form button[type="submit"] {
  background-color: #6c2a12;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: 50px;
  padding: 12px 32px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.webform-submission-form input[type="submit"]:hover,
.webform-submission-form button[type="submit"]:hover {
  background-color: #b8802b;
  color: #ffffff;
}