JSFiddle - React, Tailwind, and code Playground

HTML

<label><input type="checkbox" /> Checkbox Label</label> &nbsp; 
<label><input type="radio" /> Radio Label</label>

CSS

/* css reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, font, img, ins, kbd, q, s, samp, small, strike, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {margin:0;padding:0;border:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;vertical-align:baseline}
body {line-height:1;color:black;background:white}

/* label style - whatever can be */
label {font-family:arial;font-size:12px;line-height:26px}

/* cross browser checkbox and radio size and align */
input[type=checkbox], input[type=radio] {vertical-align:-2px;margin:0;padding:0}