Вивчіть форми HTML, створивши реєстраційну форму - Крок 17

Розкажіть нам, що сталося:
Хоч і зроблено згідно з завданням, та перевірка не пропускає й каже, що потрібен елемент input після третього label (де вводиться емейл)

Ваш код

<!-- file: index.html -->
<!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'>

<!-- User Editable Region -->

      <fieldset>
        <label>Enter Your First Name: <input></label>
        <label>Enter Your Last Name: <input></label>
        <label>Enter Your Email: <input></label>
        <label>Create a New Password: <input></label>
      </fieldset>

<!-- User Editable Region -->

      <fieldset></fieldset>
      <fieldset></fieldset>
    </form>
  </body>
</html>
/* file: styles.css */
body {
  width: 100%;
  height: 100vh;
  margin: 0;
  background-color: #1b1b32;
  color: #f5f6f7;
}

label {
  display: block;
  margin: 0.5rem 0;
}

Інформація про ваш браузер:

Агент користувача: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/109.0

Завдання: Вивчіть форми HTML, створивши реєстраційну форму - Крок 17

Посилання на завдання:

This exact code passes for me.

Actually interesting that such strange things not for the first time. Before that task thing just dissapeared so i couldn`t move forward. Thank you, that you checked that code.

спробуйте натиснути кнопку refresh коли маєте проблеми
а також виконайте той самий код у приватному режимі браузера.

en:
when you have problems please press refresh button,
and try to run the same code in browser private mode.

I tried a lot of different things. Helps only using another browser (started to use Chrome).