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>