JSFiddle - React, Tailwind, and code Playground

HTML

<input type="text">

CSS

@keyframes example {
  0% {
    width: fit-content;
  }
  100% {
    width: 100%;
  }
}

input {
  animation: 2s example infinite;
  background-color: red;
}