JSFiddle - React, Tailwind, and code Playground

Text box redondeado.

by Yolanda Robles

HTML

<form>
  First name: <input type="text" name="fname">
</form>

CSS

input {
border-radius: 10px;

}

input:focus {
background: #CEECF5;
    outline:0;
}