Build a Job Application Form - Build a Job Application Form

Tell us what’s happening:

I have two bug one on test 9 and one on test 18 the more i look the more confused i get

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Job Application Form</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <h1>Job Application</h1>
<div class="container">
    <form>
        <label for="name" id="name">Name:
        <input type="text"id="name" placeholder="Full Name">
        </label>
        <label for="email" id="email">Email:
        <input type="email" id="email" placeholder="Email Address">
        </label>
        <hr>
        <label for="position" id="position">Job position
        
        <select id="position">
            <option>Dishwasher</option>
            <option>Junior chef</option>
            <option>Sous chef</option>
            <option>Head chef</option>
            </select>
            </label>
            <hr>
            <fieldset class="radio-group">
                <label for="availability" id="availibility">Full-time
                <input type="radio" name="availability"></label>
                <label for="availability" id="availibility">Part-time
                <input type="radio" name="availability"></label>
                <label for="availability" id="availibility">Flexible</label>
                <input type="radio" name="availability"></label>
            </fieldset>
            <label for="message" id="message">Additional Comments
            <textarea id="message"></textarea>
            </label>
            <label for="submit" id="submit">Submit
            <button type="submit">Submit</button>
            </label>
        </form>
    </div>
</body>
</html>
/* file: styles.css */
input:focus , textarea:focus {
  border-color: red;
}


input:valid , select:valid , textarea:valid {
  border-color: green;
}
input:invalid , select:invalid , textarea:invalid {
  border-color: red;
}
button:hover {
  background-color: orange;
}
.radio-group input[type="radio"]:checked {
  border-color: pink;
background-color: yellow;
box-shadow: 0 0 5px red;
} 
.radio-group input[type="radio"]:checked + label {
  color: purple;
}
input:first-of-type {
  border-radius: 5px;
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36 Edg/142.0.0.0

Challenge Information:

Build a Job Application Form - Build a Job Application Form

The id attribute of each of the input element must be unique. The label element does not need the id attribute. Typically, a radio input is placed before its corresponding label element. Once that is sorted, please refer to this reference for how to style the label for a checked radio element.

Thank you all sorted now