First off, if I sound like I don't know what I'm doing, it's because I don't, so thank you for your patience!

I have Contact Form 7 appearing on a couple of my website pages.

I tried to change the background field colour from the default grey to green and also change the font, but I can’t get it to apply to the Message field (which is still appearing grey). I have 4 fields total: Name, Email, Subject, Message. Currently only the Name, Email and Subject fields are showing the correct colour and font. Not the Message field.

This is the CSS I added to the Custom CSS and JS plugin. I don't know CSS, so I copied it from elsewhere and just removed '.wpcf7 input[type=tel],' because I don't have a field for telephone number.

.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 textarea
{
background-color: #5eb12e30;
font-family: lato;
}

Can anyone please tell me how I can make the green colour also apply to the Message field? Thank you.