Create a consistent look for checkboxes across different browsers.
Source Code
.checkbox {
-webkit-appearance: none;
appearance: none;
width: 20px;
height: 20px;
background: white;
border: 2px solid currentColor;
border-radius: 4px;
}
.checkbox:checked {
background: currentColor;
}