WHen a user goes to enter their email in the footer email box, it appears in black which is the same color as the background. Here is the custom CSS for the footer section. What code should I add / where to change the color of the text that appears when someone types their email?
.copyright__content {
text-transform: uppercase;
text-align: center;
}
.accordion.footer-block.grid__item.footer-block–menu,
.footer-block__newsletter {
margin-top: 2rem;
text-align: center;
}
.newsletter-form .field__input {
text-transform: uppercase;
}
color: white;
.list-social {
justify-content: center;
}
.footer-block__details-content > li {
padding-bottom: 15px;
}
.rte > p:last-child {
padding-top: 25px;
font-size: 12px;
text-align: center;
}
@media screen and (min-width: 750px) {
.footer__content-top .grid {
row-gap: 0;
}
}
Thanks!