@tkaminja you need to fix a couple of style rules in your theme css. Here you go -
.wpcf7-form input[type="text"], input[type="email"], .wpcf7-form input[type="password"] {
max-width: 420px;
}
.wpcf7-form input[type="text"], input[type="email"], .wpcf7-form input[type="password"], .wpcf7-form textarea {
-moz-box-sizing: border-box;
width: 100%;
}
input[type="text"], input[type="email"], input[type="password"], textarea {
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) inset;
padding: 6px;
}
input[type="text"], input[type="email"], input[type="password"], textarea, select {
background: none repeat scroll 0 0 #F9F9F9;
border: 1px solid #AAAAAA;
border-radius: 4px 4px 4px 4px;
color: #555555;
font-family: Arial,sans-serif;
font-size: 12px;
}
enjoy :)