Contact Form 7: Color Input Fields
When using Contact Form 7 and trying to add a background color other than white, try inserting the following code into your CSS and customize it from there:
input, select, textarea {
border: none;
width: 380px;
color: #aeb2b7;
font-size: 13px;
background: #1d1e21;
-webkit-box-shadow: 0px 1px 0px rgba( 255,255,255,0.05 ), inset 1px 1px 2px rgba( 0,0,0,0.3 );
padding: 8px 10px; border-radius: 5px; -moz-border-radius: 5px; -o-border-radius: 5px;
-webkit-transition: background 0.3s ease; -moz-transition: background 0.3s ease; -o-transition: background 0.3s ease; transition: background 0.3s ease;
margin: 3px 0 5px 0; }

