Thank you for the quick update!
I did update the colors for the buttons under Theme Options > Buttons and added the following to make all the buttons have the same style throughout the website:
/* Style Buttons */
.x-btn.x-btn-real {
font-size:1.2em;
line-height:1.2em;
padding-top: 0.7em !important;
padding-bottom: 0.7em !important;
text-shadow: none !important;
-webkit-box-shadow: 0 0.15em 0 0 #237ba6, 0px 4px 4px rgba(0,0,0,0.30);
-moz-box-shadow: 0 0.15em 0 0 #237ba6, 0px 4px 4px rgba(0,0,0,0.30);
box-shadow: 0 0.15em 0 0 #237ba6, 0px 4px 4px rgba(0,0,0,0.30);
}
.x-btn.x-btn-real:hover {
font-size:1.2em;
line-height:1.2em;
text-shadow: none !important;
-webkit-box-shadow: 0 0.15em 0 0 #BE9149, 0px 4px 4px rgba(0,0,0,0.30);
-moz-box-shadow: 0 0.15em 0 0 #BE9149, 0px 4px 4px rgba(0,0,0,0.30);
box-shadow: 0 0.15em 0 0 #BE9149, 0px 4px 4px rgba(0,0,0,0.30);
}
/* Style "Submit" Buttons */
.x-btn, .button, [type="submit"] {
font-size:1.2em;
line-height:1.2em;
padding-top: 0.7em !important;
padding-bottom: 0.7em !important;
text-shadow: none !important;
-webkit-box-shadow: 0 0.15em 0 0 #237ba6, 0px 4px 4px rgba(0,0,0,0.30);
-moz-box-shadow: 0 0.15em 0 0 #237ba6, 0px 4px 4px rgba(0,0,0,0.30);
box-shadow: 0 0.15em 0 0 #237ba6, 0px 4px 4px rgba(0,0,0,0.30);
}
.x-btn:hover, .button:hover, [type="submit"]:hover {
font-size:1.2em;
line-height:1.2em;
padding-top: 0.7em !important;
padding-bottom: 0.7em !important;
text-shadow: none !important;
-webkit-box-shadow: 0 0.15em 0 0 #BE9149, 0px 4px 4px rgba(0,0,0,0.30);
-moz-box-shadow: 0 0.15em 0 0 #BE9149, 0px 4px 4px rgba(0,0,0,0.30);
box-shadow: 0 0.15em 0 0 #BE9149, 0px 4px 4px rgba(0,0,0,0.30);
}