I need assistance with styling a form that contains a radio button. I'm looking to customize the appearance of the radio button by adding a background image and also changing the default view of the check image. Additionally, I want the form to be centered on the screen and highlighted with a line. My code can be found on jsfiddle:
<style>
form{
font-size: 200%;
font-family: "Courier New", Monospace;
display: inline-block;
align: middle;
text-align: center;
font-weight: bold;
background-size: 20px;
}
input[type="radio"] {
width: 26px;
height: 26px;
background: url(check.png) no-repeat;
}
</style>
http://jsfiddle.net/chrathan/q1mnq2os/2/1
I am seeking guidance on how to achieve these customizations.