JSFiddle - React, Tailwind, and code Playground
HTML
<label><input type="checkbox" /> Simple text</label>
<p class="font2">
<label><input type="checkbox"/> Large Label text</label>
</p>
CSS
.font2, .font2 input {font-family:Arial; font-size:32px} /* large fonts */
input[type=checkbox], input[type=radio] {
vertical-align: middle;
position: relative;
bottom: .08em; /* this is helpful */
}