Thank you for the tips. I solved my problem by adding few lines in template css:
fieldset
{
border: none;
}
fieldset dl
{
display: block;
margin: 0;
padding: 0;
background: none;
}
fieldset dt
{
display: block;
box-sizing: border-box;
-moz-box-sizing: border-box;
width: 12em;
height: 2em;
margin: 0;
padding: 0;
float: left;
clear: both;
background: none;
line-height: 2em;
overflow: hidden;
}
fieldset dd
{
display: block;
min-height: 2em;
margin: 0 0 0 12em;
padding: 0;
background: none;
line-height: 2em;
}
fieldset label
{
display: inline-block;
width: 12em;
}
fieldset textarea
{
vertical-align: text-top;
}