The problem comes from code below.
input[type="text"], input[type="email"], input[type="password"], textarea {
padding: 1%;
border: 1px solid #EAEAEA;
line-height: 20px;
width: 98%; /* this is causing the problem */
margin: 0px 0px 20px;
background-color: #F8F8F8;
border-radius: 3px;
}
You can find this code on line 281 of style.css in your theme. To fix the problem simply comment out the that like so
input[type="text"], input[type="email"], input[type="password"], textarea {
padding: 1%;
border: 1px solid #EAEAEA;
line-height: 20px;
/* width: 98%; */
margin: 0px 0px 20px;
background-color: #F8F8F8;
border-radius: 3px;
}