
@import url('../fonts/futura.css');


:root{
    --color-red: #FF0046;
    --color-light-blue:#CFD8DB;
    --main-color:#603CD6;
}

body{
    font-family: 'futura';
    font-weight: normal;
    background: #EEE;
}


header{
    background: #000;
    text-align: center;
    padding: 10px;
    -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
}

header .logo{
    max-height: 60px;
}

.form-user{
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
    background: var(--main-color);
    padding: 20px;
    color: #FFF;
    border-radius: 0.5em;
    -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
}

.form-user h3{
    text-align: center;
    border-top:1px solid #FFF;
    margin-top: 20px;
    padding-top: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #FFF;
}
.form-user .level{
    text-align: center;
    font-size: 45px;
    font-weight: bold;
    color: var(--color-red);
}

.main-tittle{
    font-weight: bold;
    color: var(--main-color);
    font-size: 50px;
    text-align: center;
    margin-bottom: 20px;
}

.description{
    font-size: 20px;
    font-weight: 300;
}

.box-jointtest{
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-items: center;
    padding: 20px;
    width: 100%;
    height: calc(100% - 20px );
    border:1px solid var(--main-color);
    margin-top: 20px;
    text-align: center;
    color:var(--main-color);
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 0.5em;
}

.box-jointtest:hover{
    background: var(--main-color);
    color: #FFF;
}
.box-jointtest div{
    display: block;
    width: 100%;
}

.box-test{
     display:none;
     background: #FFF;
     border: 1px solid #dee2e6;
     padding: 20px;
     margin-top: -1px;
}
.box-test.active{
    display: block;
}

.box-test h5{
    color: var(--main-color);
    font-size: 25px;
    font-weight: bold;
    border-bottom: 1px solid #CCC;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.box-answer{

    background: #FFF;
    border: 1px solid #CCC;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 0.5em;
}
.box-answer label{
    display: block;
}
.box-answer label.active{
    color: var(--color-red);
}

.box-answer label.wrong{
    background: rgb(250, 176, 176);
    color: var(--color-red);
}

.box-answer label.correct{
    background: rgb(194, 248, 194);
    color: green;
}
.box-answer label:hover{
    background: #bcadff;
}

.box-answer h2{
    font-size: 15px;
    font-weight: bold;
    color: var(--main-color);
}

.btn-send-answer{
    display: inline-block;
    background: var(--color-red);
    color: #FFF;
    padding: 10px;
    text-align: center;
    width: 100%;
    border:0;
    margin-bottom: 20px;
    border-radius: 0.5em;
}

.form-group{
    margin-bottom: 10px;
}

.form-range-result{
    background: #FFF;
    padding: 20px;
    -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
    border-radius: 0.5em;
}
.form-range-result h3{
    font-weight: bold;
    color: var(--main-color);
    font-size: 40px;
}

.form-range-result h5{
    font-weight: bold;
    color:#000;
    font-size: 26px;
    margin-top: 25px;
}

@media only screen and (max-width: 768px) {
    .main-tittle{
        font-size: 30px;
    }

    .description{
        font-size: 18px;
    }
}