css
/* 
Change the color of the submit button
Doc link: https://wpforms.com/developers/how-to-change-the-submit-button-color/
*/
.wpforms-form button[type=submit] {
    background-color: #066AAB !important;
    border-color: #066AAB !important;
    color: #fff !important;
    transition: background 0.3s ease-in-out;
}
 
.wpforms-form button[type=submit]:hover {
    background-color: #04446E !important;
}