There’s a CSS reset at the top of your CSS that removes all borders where not specified.
Try playing around with something like in your CSS file this to add borders around your inpusts and textarea:
.wpcf7-form input, .wpcf7-form textarea {
border: 1px solid #ccc;
}