JSFiddle - React, Tailwind, and code Playground

HTML

<form>
<div>
    <label>Name</label>
    <input type="text" />
    <label>Organization</label>
    <input type="text" />
</div>
<div>
    <label>E-mail</label>
    <input type="text" />
    <label>Phone</label>
    <input type="text" />
</div>
</form>

CSS

label {
    display: inline;
    width: 200px;
}