JSFiddle - React, Tailwind, and code Playground
HTML
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/tailwind.min.css">
<div class="font-sans min-h-screen leading-tight flex items-center justify-center antialiased">
<input type="text" class="border bg-grey-light px-4 py-2 rounded hover:bg-grey-lighter focus:bg-white" placeholder="Your email address">
</div>
CSS
input:focus { outline: 0 }
.focus\:bg-white:focus { background-color: #fff; }
.hover\:bg-grey-lighter:hover { background-color: #f1f5f8; }