/* Shared form only: retain the existing home/Contact outer card and images. */
body .rgc-wpforms-host div.wpforms-container {
  margin: 0 !important;
  --wpforms-field-border-color: #dbe7e6;
  --wpforms-field-background-color: #fbfdfd;
  --wpforms-field-text-color: #294a52;
  --wpforms-button-background-color: #008f8a;
  --wpforms-button-text-color: #fff;
  --wpforms-label-color: #466168;
}
body .rgc-wpforms-host div.wpforms-container .wpforms-field-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 6px;
}
body .rgc-wpforms-host div.wpforms-container .wpforms-field-container > .wpforms-field {
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0;
  min-height: 110px;
  margin: 0 !important;
  padding: 0 0 12px !important;
  box-sizing: border-box;
}
body .rgc-wpforms-host div.wpforms-container .wpforms-field-textarea,
body .rgc-wpforms-host div.wpforms-container .wpforms-field-html,
body .rgc-wpforms-host div.wpforms-container .wpforms-field-checkbox {
  grid-column: 1 / -1;
}
body .rgc-wpforms-host div.wpforms-container .wpforms-field-label {
  margin: 0 0 7px;
  color: #466168;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.5;
}
body .rgc-wpforms-host div.wpforms-container .wpforms-required-label {
  color: #b32727;
  font-weight: 800;
}
body .rgc-wpforms-host div.wpforms-container input[type="text"],
body .rgc-wpforms-host div.wpforms-container input[type="email"],
body .rgc-wpforms-host div.wpforms-container input[type="tel"],
body .rgc-wpforms-host div.wpforms-container select,
body .rgc-wpforms-host div.wpforms-container textarea {
  width: 100%;
  max-width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: #294a52;
  background: #fbfdfd;
  border: 1px solid #dbe7e6;
  border-radius: 4px;
  box-sizing: border-box;
  font: inherit;
  font-size: 16px;
  line-height: 1.4;
}
body .rgc-wpforms-host div.wpforms-container select {
  padding-right: 32px;
}
body .rgc-wpforms-host div.wpforms-container textarea {
  min-height: 126px;
  resize: vertical;
}
body .rgc-wpforms-host div.wpforms-container input:focus-visible,
body .rgc-wpforms-host div.wpforms-container select:focus-visible,
body .rgc-wpforms-host div.wpforms-container textarea:focus-visible {
  outline: 2px solid #008f8a;
  outline-offset: 2px;
}
body .rgc-wpforms-host div.wpforms-container label.wpforms-error,
body .rgc-wpforms-host div.wpforms-container em.wpforms-error {
  display: block;
  margin: 6px 0 0;
  color: #a61d24;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}
body .rgc-wpforms-host div.wpforms-container .wpforms-submit-container {
  margin-top: 6px;
  padding-top: 0;
}
body .rgc-wpforms-host div.wpforms-container button.wpforms-submit {
  width: 100%;
  min-height: 50px;
  height: auto;
  padding: 13px 20px;
  color: #fff;
  background: #008f8a;
  border: 0;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.5;
  white-space: normal;
}
body .rgc-wpforms-host div.wpforms-container button.wpforms-submit:hover,
body .rgc-wpforms-host div.wpforms-container button.wpforms-submit:focus-visible {
  color: #fff;
  background: #087775;
}
body .rgc-wpforms-host div.wpforms-container button.wpforms-submit:focus-visible {
  outline: 2px solid #075c60;
  outline-offset: 3px;
}
body .rgc-wpforms-host .wpforms-confirmation-container-full,
body .rgc-wpforms-host .wpforms-confirmation-container {
  margin: 12px 0 0;
  padding: 26px 24px;
  color: #145544;
  background: #ecf9f1;
  border: 2px solid #258663;
  border-left-width: 6px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(20, 85, 68, .10);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.65;
  scroll-margin-top: 120px;
}
body .rgc-wpforms-host .wpforms-confirmation-container-full p:last-child,
body .rgc-wpforms-host .wpforms-confirmation-container p:last-child {
  margin-bottom: 0;
}
@media (max-width: 700px) {
  body .rgc-wpforms-host div.wpforms-container .wpforms-field-container {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 3px;
  }
  body .rgc-wpforms-host .wpforms-confirmation-container-full,
  body .rgc-wpforms-host .wpforms-confirmation-container {
    padding: 22px 18px;
    font-size: 17px;
  }
}
