JSFiddle - React, Tailwind, and code Playground

HTML

<span class="label">E-mail:</span><input type="email"></input><br>
<span class="label">Password:</span><input type="text"></input>
<div style="clear: left"></div>

CSS

.label {
    display: block;
    width: 100px;
    float: left;
    clear: left;
}

.inputBox {
    width: 200px;
}