JSFiddle - React, Tailwind, and code Playground

HTML

<form method="POST" action="http://localhost:8082/configurationtool/public/xmldocuments" accept-charset="UTF-8" class="inputForm"><input name="_token" type="hidden" value="MO13RXYiXmmtHD4WojbgfxwDLBAjzrfEs3721urK"><ul>
    <h1>Create New XML</h1>
    <li>
        <label>Domain:</label>
        <input placeholder="domain" name="domain" type="text" value="">        <span></span>
    </li>
    <li>
        <label>First Date:</label>
        <input placeholder="First Date" name="first_date" type="text" value="">        <span></span>
    </li>
    <li>
        <label>Last Date:</label>
        <input placeholder="Last Date" name="last_date" type="text" value="">        <span></span>
    </li>
    <li>
        <label>Log File:</label>
        <input placeholder="Log File" name="log_file" type="text" value="">        <span></span>
    </li>
    <li>
        <label>Category:</label>
        <select ="select="" category"="" apartment="Apartment" car="Car" name="category_id"><option value="" selected="selected">Select Category</option><option value="2">Apartment</option><option value="3">Car</option></select>        <span></span>
    </li>
    <li>
        <label>Website Action:</label>
        <select ="select="" action"="" rent="Rent" sale="Sale" name="website_action_id"><option value="" selected="selected">Select Action</option><option value="1">Rent</option><option value="2">Sale</option></select>        <span></span>
    </li>
    <li>
        <label>Source:</label>
        <select ="select="" source"="" dubizzle="Dubizzle" name="source_id"><option value="" selected="selected">Select Source</option><option value="1">Dubizzle</option></select>        <span></span>
    </li>
    <li>
        <label>Date Attribute Name:</label>
        <input placeholder="Date Attribute Name" name="date_attribute_name" type="text" value="">        <span></span>
    </li>
    <li>
        <label>Date Location:</label>
        <select ="select="" date="" locatoin"="" details=""...

CSS

.inputForm{
    max-width: 500px;
    background: #555;
    padding: 4px 30px 0px 30px;
    font: 12px "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #D3D3D3;
    text-shadow: 1px 1px 1px #444;
    border: none;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}
.inputForm ul{
    padding: 0;
    margin: 0;
}
.inputForm ul h1{
    font-weight: 700;
    color: inherit;
}
.inputForm ul li{
    list-style: none;
}
.inputForm li label{
    width: 25%;
    text-align: right;
    padding-right: 10px;
    margin-top: 10px;
    font-weight: bold;
    display: inline-block;
}

.inputForm input[type="text"], .inputForm input[type="email"], .inputForm textarea, .inputForm select {
    border: none;
    color: #525252;
    height: 30px;
    line-height: 15px;
    margin-bottom: 10px;
    margin-right: 6px;
    margin-top: 2px;
    outline: 0 none;
    padding: 2px 0px 2px 5px;
    width: 70%;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    background: #DFDFDF;
    font-family: inherit;
    font-size: inherit;
}