I have a div with a label next to it, like this:

This is how my html in Vue.js looks like:
<div style="margin-bottom: 15px;">
<input
id="newsletterRegister"
type="checkbox"
name="newsletterRegister"
style="width: 30px"
/>
<label for="newsletterRegister">
Do you want to receive email promotions?
</label>
</div>
I have no idea how to center the label next to the checkbox. I have tried a lot of things, but it doesn't seem to be working. Thanks for answers!