Put this code segment in you theme stylesheet file (style.css) to get rounded corners on you input fields:
.wpcf7 input[type=text], .wpcf7 textarea {
border: 1px solid #A0A0A0; /* sets border thickness and color */
border-radius:5px; /* sets border radius */
background:#CCE5FF; /* sets area background color */
}
Change as desired.
Dave