body {
margin:0px;

}
table {
font-family:Tahoma;
font-size:12px;
}
.btn-submit {
    color: #f8f9fa;
    background-color: #FF5722;
    border-color: #F44336;
}
[type="radio"]:checked + label:before, [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #FF5722;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after, [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #FF5722;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.btn-submit:hover {
    color: #f8f9fa;
    background-color: #FF5722;
    border-color: #FF5722;
}