Change background color for Mailchimp widget

Hello,

Thanks for a great theme!

I was wondering how I can change the background color to the newsletter signup widget. See attached for screen shot. The url is www. pebblespilates .com

Thanks!

Hello,

I hope you are doing well today.

You can use the following CSS code to change the background color by going to Appearance > Customize > Additional CSS and pasting it there.


div#mc4wp_form_widget-2 {
    background-color: red;
}

Best Regards,
Support

Thanks!

And how do I change the color on the font for that widget with custom css?
Header:
Text:
Text field (in the box):
Button color:
Button text color:

Thanks so much!

Hello,

I hope you are doing well today.

You can use the following CSS code to make the changes.


.widget .widget-title {
    color: #001c28;
}

label {
    color: black;
}

input[type="submit"] {
    background: red !important;
    color: white;
    border-color: red !important;
}

Best Regards,
Support