Changing Newsletter Success message font color and background in Debut Theme

Hello:

Our theme is working great, but I have one design issue: The newsletter success message is appearing as a blank box above the input form box for email addressees.

Where in the css or theme settings can I change the body font color to white but get rid of the background form box that appears in a faded #576F72 green?

See photo below. Thank you in advance!

Hello @robinette

Please use below code on assets → theme.scss.css at the bottom to remove white box showinng in screenshot by you.

.site-footer__content .form-message–success {
background-color: transparent !important;
}

Thank you!