Goal: change background color of "Subscribe" button on MailChimp embedded sign-up form on company website page
Question: MailChimp gives the CSS hook "input.button" to style the Subscribe button. How do I use this CSS to override the styles already in place?
The page I would like to edit: http://www.sieralearn.com/subscribe/
Here is how the button is written in the HTML of the page:
<div class="clear"><input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button"></div>
As far as I can tell, I don't have access to the stylesheet used by MailChimp to generate the embed code (http://cdn-images.mailchimp.com/embedcode/classic-081711.css). Here is how the styles appear in the MailChimp stylesheet:
#mc_embed_signup .button {clear:both; background-color: #aaa; border: 0 none; border-radius:4px; color: #FFFFFF; cursor: pointer; display: inline-block; font-size:15px; font-weight: bold; height: 32px; line-height: 32px; margin: 0 5px 10px 0; padding: 0 22px; text-align: center; text-decoration: none; vertical-align: top; white-space: nowrap; width: auto;}
Thank you for any and all assistance.

