/* Outer container */
#lf_form_container {
  max-width: 520px;
  /* margin: 0 auto 3rem; */
  padding: 2rem 2.25rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  font-family: inherit;
}

/* Heading */
#lf_form_container h3 {
  margin: 0 0 1.5rem;
  font-size: 2rem;
  font-weight: 600;
}

/* General spacing */
#lf_form_container p {
  /* margin: 0 0 1rem; */
}

/* Get rid of the extra  line breaks after labels */
#lf_form_container p br {
  display: none;
}

/* Labels */
#lf_form_container label.description {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
  font-weight: 600;
}

/* Inputs &amp; textarea */
#lf_form_container input[type="text"],
#lf_form_container input[type="email"],
#lf_form_container input[type="tel"],
#lf_form_container textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 0.75rem;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}

#lf_form_container textarea {
  min-height: 140px;
  resize: vertical;
}

/* Hide the honeypot nicely (already display:none inline, this is just backup) */
#lf_wrap {
  display: none !important;
}

/* Buttons wrapper */
#lf_form_container p.buttons {
  margin-top: 1rem;
}

/* Submit button */
#lf_form_container #saveForm.button_text {
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  background-color: #8bd7f8 !important; /* your green, overrides inline */
  color: #000000 !important;
}

#lf_form_container #saveForm.button_text:hover {
  background-color: #15502b !important;
}