You want the `select` element to remain with a white background, but now it is not getting the same `min-height` as the `input` and `textarea` elements.
Move the `min-height` property and value so that all three element types have the same `min-height` value, and the `select` element still has a white background.
# --hints--
You should move the `min-height` property and value to the `input, textarea, select` selector.
<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"/>