I am trying to get my CTA above my privacy text in my form. I have it above my reCAPTCHA and need it up one more space. Any help would be greatly appreciated.
Here is my page and code.
https://info.patientmatters.com/intelliguide-meeting-request
<style>
/* following styles are for swapping positions of submit button and recaptcha field */
/* define the form as of table style display */
form {
display: table !important;
}
/* define the submit button section as table footer */
.hs_submit.hs-submit {
display: table-footer-group !important;
}
/* define the recaptcha section as table footer too */
/* now both elements are in the footer, script loads last, so underneath submit */
.hs_recaptcha.hs-recaptcha.field.hs-form-field {
display: table-footer-group !important;
}
/* add margin under submit button */
input.hs-button.primary.large {
margin-bottom: 40px !important;
}
/* end of submit-recaptcha swap style */
</style>
