Survey form checkbox alignment

**Tell us what’s happening:**I am not getting my checkbox right in the form output it is supposed to come in the left side of the field in the sample provided but i am getting it to the right of the text field . Please help.

body{
background: LightPink;
text-align: auto-flow;

}
header{
font-weight: bold;

}
form{
padding: 70px;
background: white;
text-align: left;
margin: auto;

width: 50%;
display: block;

}

#submit{
background: red;
color: white;
font: bold;
}

h1{
color: black;
text-align: center;
font-family: verdana;
font-size: 35px;
}

radio{
position: relative;
display: block;
margin-left: 20px;
padding-bottom: 10px;

}
checkbox{
position: relative;
display: block;
margin-left: 20px;
padding-bottom: 10px;
display: block;

}
and the html :slight_smile:

Survey Form


Let us know how we can improve freeCodeCamp

Name:

Email:

Age:

Which option best describes your current role? Select an option Student Full time job Full Time Learner Prefer not to say Other

How likely is that you would recommend freeCodeCamp to a friend?

Definitely
<input type="radio" id="maybe" name="recommend" value="Maybe">
<label for="maybe">Maybe</label><br>
<input type="radio" id="not sure" name="recommend" value="Not Sure">
<label for="not sure">Not Sure</label><br>
<label for="like">What do you like most in FCC:</label>
<select id="like" name="like">
  <option value="select an option">Select an option</option>
  <option value="challenges">Challenges</option>
  <option value="projects">Projects</options>
<option value="community">Community</option>
<option value="open source">Open Source</option>
</select>

Things that should be improved in the future
(Check all that apply):

Front-end Projects
Back-end Projects
Data Visualization
Challenges
Open Source Community
Gitter Help Rooms
Videos
City Meetups
Wiki
Forum
Additional Courses
<label for="comments">Any Comments or Suggestions?</label>
<br>
<textarea id="comments" name="comments"  rows="5" columns="10">

Enter your comments here…



<input type="submit" value="Submit" id="submit">

Your code so far

Your browser information:

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

Link to the challenge: