I keep getting an error saying that my needs to be after my last fieldset. It is but it won’t pass me
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Registration Form</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<h1>Registration Form</h1>
<p>Please fill out this form with the required information</p>
<form method="post" action="https://register-demo.freecodecamp.org">
<fieldset>
<label for="first-name">First Name:
<input id="first-name" name="first-name" type="text" required />
</label>
<label for="last-name">Last Name:
<input id="last-name" name="last-name" type="text" required />
</label>
<label for="email">Email:
<input id="email" name="email" type="email" required />
</label>
<label for="new-password">New Password:
<input id="new-password" name="new-password" type="password" required />
</label>
</fieldset>
<!-- ✅ This line is REQUIRED and must come AFTER the fieldset -->
<input type="submit" value="Submit" />
</form>
</body>
</html>