Misaligned Label for Checkbox on Contact Form

Hi,

I’m trying to include a checkbox on a custom contact form but the label appears under the checkbox. How can I get it to align beside the checkbox?

The form is at the bottom of this page

This is my form code:

{% form ‘contact’ %}
{{ form_errors | default_errors }}

First Name
Last Name
Email
I agree to the terms above.

{% endform %}

Thanks!

Updated code (still same issue though):

{% form ‘contact’ %}

{% if form.posted_successfully? %}

{{ 'contact.form.post_success' | t }}

{% endif %}

{{ form_errors | default_errors }}

First Name
Last Name
Business Name
Email
I agree to the terms above.

{% endform %}