/* Clio Grow contact form, matched to Bridge theme */

form:has(#lf_first_name) h3 {
  margin: 0 0 22px;
  font-size: 22px;
  line-height: 1.3;
}

#lf_first_name_block,
#lf_last_name_block,
#lf_email_block,
#lf_phone_block,
#lf_message_block { margin: 0 0 18px; }

#lf_first_name_block label,
#lf_last_name_block label,
#lf_email_block label,
#lf_phone_block label,
#lf_message_block label {
  display: block;
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #444;
}

#lf_first_name,
#lf_last_name,
#lf_email,
#lf_phone,
#lf_message {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #d5d5d5;
  border-radius: 0;
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.5;
  color: #222;
}

#lf_message { min-height: 150px; resize: vertical; }

#lf_first_name:focus,
#lf_last_name:focus,
#lf_email:focus,
#lf_phone:focus,
#lf_message:focus {
  border-color: #212b3a;
  outline: none;
}

#lf_disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 22px 0;
}
#lf_disclaimer input[type="checkbox"] {
  flex: 0 0 auto;
  margin: 5px 0 0;
}
#lf_disclaimer label {
  font-size: 12px;
  line-height: 1.65;
  color: #6b6b6b;
}

#lf_wrap { display: none !important; }

form:has(#lf_first_name) p.buttons { margin: 0; }

#saveForm {
  width: auto;
  border: none;
  border-radius: 0;
  padding: 15px 36px;
  background: #212b3a;
  color: #fff;
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}
#saveForm:hover { background: #3a4a63; }

@media (max-width: 600px) {
  #saveForm { width: 100%; }
}