<fieldset>
<h2 class="fs-title">Personal Details</h2>
<h3 class="fs-subtitle">Please Enter your personal details</h3>
<input id="finame" type="text" name="fname" placeholder="Firstname" />
<input type="text" name="lname" placeholder="Lastname" />
<div class="mof">
<input type="radio" name="mof" value="Male" align="left">Male</input>
<input type="radio" name="mof" value="Male" align="left">Male</input>
</div>
<input type="password" name="pass" placeholder="Password" />
<input type="password" name="cpass" placeholder="Confirm Password" />
<input type="button" name="next" class="next action-button" value="Next" />
</fieldset>
This is the output I am getting
https://i.stack.imgur.com/pPr7o.jpg
I would like to have the firstname and lastname next each other and also the radio buttons in series.
I would also like to add a '+' symbol which will add additional text fields dynamically to the form and make it scrollable.