JSFiddle - React, Tailwind, and code Playground

HTML

<input id="search" class="search-query" placeholder="Placeholder text here" name="" value"">

CSS

#search
{
    color:blue;
}

#search::-webkit-input-placeholder {
   color: red;
}

#search:-moz-placeholder {
   color: red;
}

#search::-moz-p {
   color: red;
}

#search:-ms-input-placeholder {
   color: red;
}