Build a Job Application Form - Build a Job Application Form

Tell us what’s happening:

Stuck on the build a job application forum, the code below is not working i cant see any mistakes:

.radio-group input[type=“radio”]:checked {
border-color: green;
box-shadow: green;
color: green;
background-color: green;
}

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 href="styles.css" rel="stylesheet">
</head>
<body>
    <div class="container">
        <form>
            <label for="name">Full Name:<br>
            <input type="text" id="name" placeholder="Enter your name"><br />
            </label>
            <label for="email">Email:<br />
            <input type="email" id="email" placeholder="Enter your email"><br />
            </label>
            <label for="position">Position:<br />
            <select id="position" placeholder="Select your position">
                <option>Full Position</option>
                <option>Part Position</option>
                <option>Ful</option>
            </select>
            </label><br />
            <fieldset class="radio-group" name="availability">
                <legend>Availability</legend>
                <input type="radio" id="part" name="availability">
                <label for="part">Part Time</label>
                <input type="radio" id="full" name="availability">
                <label for="full">Full Time</label>
            </fieldset>
            <label for="message">Why do you want this job<br />
            <textarea id="message" placeholder="Write your motivation">
            </textarea>
            </label><br />
            <button type="submit">Submit your application</button>
        </form>
    </div>
</body>
</html>
/* file: styles.css */
input:focus, textarea:focus {
  border-color: maroon;
}

input:invalid, select:invalid, textarea:invalid {
  border-color: red;
}

input:valid, select:valid, textarea:valid {
  border-color: green;
}

button:hover {
  background-color: blue;
  color: white;
}


.radio-group input[type="radio"]:checked {
  border-color: green;
  box-shadow: green;
  color: green;
  background-color: green;
}



### Your browser information:

User Agent is: <code>Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36</code>

### Challenge Information:
Build a Job Application Form - Build a Job Application Form
https://www.freecodecamp.org/learn/full-stack-developer/lab-job-application-form/lab-job-application-form

Hi. Can you link to the challenge step you are stuck on please.

box-shadow should have the declearation of the offset-x and offset-y.
box-shadow:offset-x offset-y blur(optional) spread-radius(optional) color.
Even if you do not want to translate the shadow,you have to set them to 0 px.

@Dovb1ek thanks for your help, it worked