Antimatter theme, forms, checkbox field styling

What I am trying to achieve is for the label to be on the same line and to the right of the checkbox.

The default layout of this input field is a bit odd for me, it shows the checkbox with the label below it on the next line (this is working exactly as shown in the help here: https://learn.getgrav.org/forms/forms/fields-available#the-checkbox-field. )

to close the loop on this, my solution was the following CSS which I applied using the shortcode-assets plugin. Added the following to my ford.md page

[assets=inlineCss]

input[type="checkbox"] {
    float: left;
    margin-top: 8px;
}

[/assets]

I thin this is already sorted in the last release of the forms plugin. It should be adding an inline style to inline the label.

updated theme and form plugin. you are right, I dont need the additional styling anymore. Thanks