The code for your Subscribe button is currently:
.btn, [type=button], [type=submit], button {
background: #ff8c00;
border-color: #ff8c00;
color:#ff8c00
}
If you’ve done this in your Tools > Custom CSS tool, try changing to:
.btn, [type=button], [type=submit], button {
background: #ff8c00;
border-color: #ff8c00;
color: #fff
}
or:
.btn, [type=button], [type=submit], button {
background: #ff8c00;
border-color: #ff8c00;
/* color:#ff8c00 */
}
To make your Subscribe button stand out better, try:
.btn, [type=button], [type=submit], button {
background: #ff8c00;
border-color: #ff8c00;
color:#000
}