JSFiddle - React, Tailwind, and code Playground

HTML

<label>
    
    Your Nameasasas:- <input type="text" value="your name"><span>*</span>
    
    
</label>

CSS

label{
    color:black;
}
label  span {
    color:red;
}
input{
    line-height:25px;
    color:gray;
    font-size:16px;
}

input:focus{
color:black;
}