Hi dear @greglakes.
No, by default it is set another color. As we see, there is a style conflict with your theme, so find this file – wp-content/plugins/contact-forms-builder/frontend/css/wpdevart-forms.css, it is our plugin style file and edit it.
Find this part of the code –
.wpdevart-forms button, .wpdevart-forms input[type="reset"] {
font-family: inherit;
margin: 0px 0px 0px 0px;
line-height: normal;
vertical-align: top;
width: auto;
}
and replace it with this code –
.wpdevart-forms button, .wpdevart-forms input[type="reset"] {
font-family: inherit;
margin: 0px 0px 0px 0px;
line-height: normal;
vertical-align: top;
width: auto;
background-color: #ccc!important;
}
After the changes clear your website and browser caches and check it again. This should help.
Thanks.