Survey Form chalenger

já revirei este código e não entendo porque não passa em nemhum dos testes

type or paste code here
```<!DOCTYPE html>
<html lang="en">
<head>
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta charset="utf-8">
  <title>Search Form<title>
  <link rel="stylesheet" href="styles.css">
</head>
<body>

<main>
<h1 id="title">Search Form</h1>
<p id="description">Search form</p>

<form id="survey-form" method="POST">
  <legend>Searh Form</legend>
  <fieldset>

  <label for="name-label"> Seu Nome:
    <input placeholder="seu nome" id="name" required type="text"> 
  </label>

  <label for="email-label"> Seu Email:
    <input placeholder="seu email" pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,4}$" required id="email" type="email">
  </label>

  <label for="number-label"> Seu Número:
    <input placeholder="seu número" id="number" type="number" min="0" max="9999">
  </label>
  
   <label for="">
    <select id="dropdown" name="select">
     <option name="1" value="1">1</option>
     <option name="2" value="2">2</option>
    </select>
   </label>

   <label for=""> <input value="1" name="1" type="radio"/></label>
   <label for=""> <input value="2" name="2" type="radio"/></label>

   <label> <input type="checkbox" name="1" value="1"/> </label>
   <label> <input type="checkbox" name="2" value="2"/> </label>

   <label for=""> <textarea id=""> </textarea> </label>
   <button type="submit" id="submit"> </button>

  <fieldset>
 </form>
</main>

</body>
</html>

Se você tiver uma pergunta sobre um desafio específico relacionado ao seu código escrito para esse desafio e precisar de ajuda, clique no botão Pedir ajuda localizado no desafio (parece um ponto de interrogação). Este botão só aparece se você tiver tentado enviar uma resposta pelo menos três vezes. O botão Pedir ajuda criará um novo tópico com todo o código que você escreveu e incluirá um link para o desafio também. Você ainda poderá fazer perguntas na postagem antes de enviá-la ao fórum. Obrigado.

English version

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 Ask for Help button located on the challenge (it looks like a question mark). This button only appears if you have tried to submit an answer at least three times.

The Ask for 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.