JSFiddle - React, Tailwind, and code Playground

by web designer

HTML

<form action="demo_form.asp" style="color:green;">
    <fieldset><legend> Personal Details </legend>
First Name: <br>
<input type="text" name="fname" placeholder="Enter First Name"><br>
Last Name: <br>
<input type="text" name="lname" placeholder="Enter Last Name"><br>
Date Of Birth: <br>
    <input type="text" name="dob" placeholder="mm / dd / yy"><br>
        </fieldset>
</form>

CSS

input{
    border:1px solid #ddd !important;
    background-color:transparent;
    background-color:#000;
    cursor:pointer;
    color:#fff;
    padding:10px;
}