Dear, to change color and background color, please add custom css on your site.
1. Example change input text placeholder color to #333
.online-request .wpcf7-form-control:not(.wpcf7-submit)::placeholder, .contact-home .wpcf7-form-control:not(.wpcf7-submit)::placeholder, .wpcf7 .online-request select::placeholder, .wpcf7 .contact-home select::placeholder {
color: #333;
}
2. Change input color and border color to #333
.online-request .wpcf7-form-control:not(.wpcf7-submit), .contact-home .wpcf7-form-control:not(.wpcf7-submit), .wpcf7 .online-request select, .wpcf7 .contact-home select {
border-color: #333;
color: #333;
}
Best regards.