You should attach the pictures, I have looked at your file html and css, cause here can you use too much "margin-top", increase the distance between two label, first you should label a separate div tag, and the label underneath a separate div tag example:
<div class="input_top">
<span> City </span>
<input type="text"....>
</input>
........
</div>
..................
<div class="input">
<span> City </span>
<input class="top" type="text"....>
</input>
........
</div>
and css:
.input_top {margin:100px 0 0 0};
.input {margin:30px 0 0 0};
may be so ^_____________________^
Ps: My english very bad