I cannot for the life of me get my text to align centered with any of my buttons and checkboxes. Also, I would love if my two radio buttons were centered within the box, but can’t figure out how to do it. Any help is appreciated! I’m running this on Chrome.
<fieldset>
<p>Are you an individual OR a representative a company/organization?</p>
<input type="radio" id="individual" name="affiliation" />
<label for="affiliation" class="inline" >Individual</label>
<input type="radio" id="company" name="affiliation" />
<label for="affiliation" class="inline">Company/Organization</label>
</fieldset>
<!--Align checkboxes with labels-->
<fieldset>
<p>Please select AT LEAST one of my affiliations that you'd like the content to be posted to:</p>
<input type="checkbox" id="personal account" name="personal account" value="personal" />
<label for="personal account" class="inline" />Personal Account(s)</label>
<input type="checkbox" id="100thieves" name="100thieves" value="100thieves" />
<label for="100thieves" class="inline">100 Thieves</label>
<input type="checkbox" id="women-in-code" name="women-in-code" value="women-in-code" />
<label for="women-in-code" class="inline" >Women in Code, Inc.</label>
</fieldset>
input[type="radio"], input[type="checkbox"] {width: 10%;
border: 0px;
height: 0.5em;
width: 1em;}
label[for="affiliation"], label[for="personal account"], label[for="100thieves"], label[for="women-in-code"] {width: 70%;
display:inline}