.login-page-card {
    margin: 100px 0;
}
.card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
}
.justify-content-center {
    -webkit-box-pack: center!important;
    -ms-flex-pack: center!important;
    justify-content: center!important;
}
.card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}
.submit {
    border-radius: 20px;
    background-color: #f1732a;
    padding: 8px 20px;
    color: #FFF;
    text-decoration: none;
    position: relative;
    top: -10px;
    font-size: 16px;
}
.invalid-feedback {
    width: 100%;
    margin-top: .25rem;
    color: #dc3545;
}
.inner-container{
    margin: 0 40px;
    min-height:400px;
}
.history{
    background-color: #00445c;
    color: #fff;
    border-color: #00445c;
}
.history:hover{
    color: #fff;
    background-color: #204d74;
    border-color: #122b40;
}
.logout{
    background-color: #f87021;
    color: #fff;
    border-color: #f87021;
}
.logout:hover{
    color: #fff;
    background-color: #f88b3a;
    border-color: #f87021;
}
.question_image
{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 40%;
}
.question_container{
    padding: 20px;
}

.custom-radio {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.custom-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 4px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.custom-radio:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.custom-radio input:checked ~ .checkmark {
    background-color: #00445c;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.custom-radio input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.custom-radio .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}
.bx-wrapper{
    margin-bottom: 15px !important;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.exam-btn{
    margin-bottom: 10px;
}
.next-prev-btn{
    margin-left: 13px;
}