input style with css code example
Example 1: css color of input
input{
background-color: white; /*The color of your choice here*/
}
Example 2: form css
#form {
border: 1px solid black;
padding: 1.5%;
text-align: center;
}
input{
background-color: white; /*The color of your choice here*/
}
#form {
border: 1px solid black;
padding: 1.5%;
text-align: center;
}