JSFiddle - React, Tailwind, and code Playground
HTML
<p>
<label for="fieldone">Field Ones Label</label><input type="text" name="fieldone">
</p>
<p>
<label for="fieldtwo">Field Twos Label but this is longer</label><input type="text" name="fieldtwo">
</p>
CSS
label {
margin-right:10px; //To give it a little gap from the text
}
p {
margin-bottom:20px; // To space to the next input
}