Contact Form Base Styles
Jul 30, 2020 | CSS
.contact-form input, .contact-form textarea{
width:100%;
padding:10px !important;
border:1px solid #000000 !important;
}
.contact-form input[type=submit]{
max-width:140px;
padding:10px !important;
border:1px solid #000000 !important;
background:#ffffff;
color:#000000;
font-size:16px;
font-weight:600;
}
.contact-form input[type=submit]:hover{
background:#000000;
color:#ffffff;
}
.contact-form label{
font-weight:600;
}
This is a good starting point for styling a form.