JSFiddle - React, Tailwind, and code Playground

HTML

<input type="text" /><br /><br />
<input type="text" class="basic"/>

CSS

input:not(.basic){
    height:28px;
    border:1px solid #c5d1db;
    padding-left:5px;
    padding-right:5px;
    color:red;
    font-size:13px;
    box-shadow:inset 0 4px 5px 0 #ebebeb;
    margin:0;
}