/* Form container box style */
#lf_form_container {
  background: #33418B;
  max-width: 500px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
}

/* Full-width fields */
#lf_form_container input[type="text"],
#lf_form_container input[type="email"],
#lf_form_container input[type="tel"],
#lf_form_container textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

/* Optional: ensure spacing for any ::before label */
#lf_form_container p::before {
  display: block;
  font-weight: bold;
  margin-bottom: 2px;
}

/* Button style and fix missing text using ::after */
#saveForm {
  background-color: #0073aa;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  color: transparent; 
  position: relative;
  overflow: hidden;
}

#saveForm::after {
  content: "Submit";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  pointer-events: none;
}

#saveForm:hover {
  background-color: #005f8d;
}