To make the submit button look more in line with the rest of the form, give it the same `height` as the other fields (`2em`). Also, increase the `font-size` to `1.1rem`.
# --hints--
You should give the submit button a `height` of `2em`.
<p>Please fill out this form with the required information</p>
<formaction='https://fcc-registration-form.com'>
<fieldset>
<label>Enter Your First Name: <inputtype="text"name="first-name"required/></label>
<label>Enter Your Last Name: <inputtype="text"name="last-name"required/></label>
<label>Enter Your Email: <inputtype="email"name="email"required/></label>
<label>Create a New Password: <inputtype="password"name="password"pattern="[a-z0-5]{8,}"required/></label>
</fieldset>
<fieldset>
<label><inputtype="radio"name="account-type"class="inline"/> Personal Account</label>
<label><inputtype="radio"name="account-type"class="inline"/> Business Account</label>
<label>
<inputtype="checkbox"name="terms"class="inline"required/> I accept the <ahref="https://www.freecodecamp.org/news/terms-of-service/">terms and conditions</a>
</label>
</fieldset>
<fieldset>
<label>Upload a profile picture: <inputtype="file"name="file"/></label>
<label>Input your age (years): <inputtype="number"name="age"min="13"max="120"/>