#formulario {
    background-color: #f9eeee;
    border-radius: 50px;
    height: 435px;
    text-align: center;
    margin: auto;
    width: 880px;
}
.email {
    float: right;
    width: 45%;
}
#nombre, #correo, #password, #confirmarPassword, #profesion,#cedula {
    background: #f2f2f2;
    border: none;
    border-bottom: solid 2px #474544;
    color: #474544;
    font-size: 12px;
    font-weight: 200;
    letter-spacing: 1px;
    width: 99%;
    height: 32px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
#nombre:focus, #correo:focus, #password:focus, #confirmarPassword:focus, #profesion:focus,#cedula:focus {
    outline: none;
    padding: 0 0 0.875em 0;
    background: #fff;
}
.message {
    float: none;
}
.tabForm {
    text-align: center;
    border-collapse: collapse;
    margin: auto;
}
.tabForm tr td:nth-child(1) {
    width: 150px;
    text-align: right;
    padding-right: 5px;
    color: #203A80;
}
.tabForm tr td:nth-child(3) {
    width: 150px;
    text-align: right;
    padding-right: 5px;
    color: #203A80;
}
.tabForm tr td:nth-child(4) {
    padding-right: 5px;
    width: 250px;
    text-align: right;
    padding-left: 5px;
}
.tabForm tr {
    height: 45px;
}
#form_button {
    background: none;
    border: solid 2px #474544;
    color: #474544;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    outline: none;
    padding: 8px 25px;
    text-transform: uppercase;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
#form_button:hover {
    background: #ff4200;
    color: #F2F3EB;
}
.form-group {
    display: block;
    margin-bottom: 15px;
}
.form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}
.form-group label {
    position: relative;
    cursor: pointer;
}
.form-group label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #888888;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    background-color: #fff;
}
.form-group input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #ff4200;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
[type="radio"]:checked, [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked+label, [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #000;
}
[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 #000;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked+label:after, [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #ff8b61;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}