simple css input style code example
Example 1: input backgound color
<input style="background-color: gold;" type="text" value="">
Example 2: form css
#form {
border: 1px solid black;
padding: 1.5%;
text-align: center;
}
Example 3: style input by type
/* Style input based on type */
input[type=text]
{
}