Page is a not externally linkable
SevenCubed - 4:24 pm on Nov 4, 2012 (gmt 0)
Then try simply padding your first <p>
<!DOCTYPE html>
<html>
<head>
<title></title>
<style>
fieldset {padding:0 15px 15px 15px;}
.pad{padding:15px 0 0;}
</style>
</head>
<body>
<form>
<fieldset>
<legend>Form</legend>
<p class="pad">
<label for="name">Name </label><input id="name" type="text">
</p>
<p>
<label for="email">Email </label><input id="email" type="text">
</p>
</fieldset>
</form>
</body>
</html>