Here is the page: pages.hexarmor.com/Webinar-Test_Test5.html
Below is the current form's custom CSS:
/* Add your custom CSS below */
.mktoForm {
border-style: solid !important;
border-width: 2px !important;
border-color: #c4d82d !important;
border-radius: 9px !important;
}
.mktoForm .mktoRequiredField label.mktoLabel {
padding-bottom: 10px !important;
}
.mktoForm input[type=text], .mktoForm input[type=url], .mktoForm input[type=email], .mktoForm input[type=tel], .mktoForm input[type=number], .mktoForm input[type=date], .mktoForm textarea.mktoField, .mktoForm select.mktoField {
width:300px !important;
top: 19px !important;
left: 0px !important;
font-size: 20px !important;
line-height: 25px !important;
height: 42px !important;
padding-left: 8px !important;
padding-right: 8px !important;
}
.mktoFormCol, .mktoFieldWrap {
width: 300px !important;
}
.mktoButtonWrap {
margin-left:0 !important;
}
.mktoButtonRow {
width:280px !important;
text-align:center !important;
}
.mktoForm .mktoButtonWrap.mktoSimple .mktoButton {
width:320px !important;
background-color:#f8991d !important;
padding:10px 20px !important;
font-size: 28px !important;
}
Two things I can see -- the CSS you're using to select the button isn't working because the .mktoButton element isn't contained within a .mktoSimple class -- the correct targeting to use would be:
.mktoForm .mktoButtonWrap.mktoDownloadButton .mktoButton {
Also, there's a number of styles from your page/template's <head> that are setting values for background (among other things). So I may have led you a bit astray earlier -- try switching background-color back to background, and see if the yellow color is applied.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.