JSFiddle - React, Tailwind, and code Playground

HTML

<div class="content">
    <div>
        <label>name</label>
        <input type="text" id="name">
    </div>
    <div>
        <label>email address</label>
        <input type="text" id="email">
    </div>
</div>

CSS

div
{
    padding: 5px;    
}
label
{
    display: block;
    float: left;
}
.content
{
    width: 300px;
    margin: 0 auto;
}