Hi John, you'll need to add some CSS to the page to override the default button color. You can do that by pasting something similar to the following code into an HTML element. Replace the bold hex values with your brand colors:
<style>
input[type="submit"] {
background: #ffa200 !important;
border: 7px solid #f9bd4f !important;
}
</style>
Hope that helps!