JSFiddle - React, Tailwind, and code Playground

HTML

<table class="fields" id="EntityDetails_Fields" cellspacing="0" cellpadding="0">
    <tbody>
        <tr>
            <td class="Form">Name:</td>
            <td>
                <input name="Name" id="Name" type="text" value="Memorial Park Group" />
            </td>
        </tr>
        <tr>
            <td class="Form">NPI:</td>
            <td>
                <input name="NPI" class="TextBox" id="NPI" type="text" value="" />
            </td>
        </tr>
        <tr>
            <td class="Form">Tax ID:</td>
            <td>
                <input name="TaxIDNumber" id="TaxIDNumber" type="text" value="21-21212121" />
            </td>
        </tr>
        <tr>
            <td class="Form">Medicare:</td>
            <td>
                <input name="MedicareNumber" id="MedicareNumber" type="text" />
            </td>
        </tr>
        <tr>
            <td class="Form">Medicaid:</td>
            <td>
                <input name="MedicaidNumber" id="MedicaidNumber" type="text" value="1234567" />
            </td>
        </tr>
        <tr>
            <td class="Form">In Use:</td>
            <td><span id="InUse"><input name="InUse$ctl00" id="InUse_ctl00" type="checkbox" checked="checked" /></span>
            </td>
        </tr>
    </tbody>
</table>

CSS

table.fields {
    width: 98%;
    margin: 4px 1%;
}
table.fields .Form, table.fields .fl {
    padding: 2px;
}
table.fields > tbody > tr > td {
    padding: 2px 1%;
    vertical-align: middle;
}
.Form, .form, .fl {
    white-space: nowrap;
    width: 10%;
    vertical-align: middle;
}
table.fields > tbody > tr > td {
    padding: 2px 1%;
    vertical-align: middle;
}
table.fields input[type='text'], table.fields input[type='password'], table.fields select, .inpt {
    width: 98%;
    border: solid 1px #666;
    color: #000;
    box-sizing: border-box;
}