/* === Custom Contact Form Styles === */

.ccf-form {
  max-width: 600px;
  margin: 0 auto;
  font-family: inherit;
}

.ccf-form label {
  display: block;
  font-weight: 500;
}

.ccf-form input[type="text"],
.ccf-form input[type="email"],
.ccf-form input[type="tel"],
.ccf-form input[type="number"],
.ccf-form select,
.ccf-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 8px 10px;
  margin-top: 4px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  resize: vertical;
}

/* Checkboxes and Radios */
.ccf-form input[type="checkbox"],
.ccf-form input[type="radio"] {
  width: auto;
  margin-right: 8px;
}

/* "Other" input beside checkbox */
#interest-other-input {
  margin-left: 8px;
  width: calc(100% - 24px);
}

/* Buttons */
.ccf-form button {
  display: inline-block;
  background-color: #215a31;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
  width: 100%;
  margin-top: 12px;
}

.ccf-form button:hover {
  background-color: #67a543;
}

.ccf-form-mt-6 {
  margin-top: 20px;
}

/* Fieldsets */
.ccf-form fieldset {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px 12px;
  margin-bottom: 10px;
}

.ccf-form legend {
  font-weight: 600;
  margin-bottom: 6px;
}



#interest-other-input::placeholder {
  color: #888;
  opacity: 1;
}

#referral-other-input::placeholder {
  color: #888;
  opacity: 1;
}