Registration form step 15

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>

Hi. Can you please post the url of the step you are doing.

For future reference you can do this from the template if you press the help button on the step.

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Help button located on the challenge. This button only appears if you have tried to submit an answer at least three times.

The Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.

Hi there!

Your code is correct, but it looks like you have lost some of the given code (two empty fieldset elements). Please reset this step and try again placing your code after the last fieldset element.

Happy coding!