.h1{
    font-weight:bold;
    font-size: 30px;
    margin-bottom:35px;
    text-align:center;
}

main{
    align-items: center;
    justify-content: center;
    background: #ecfdfc;
    padding-top:50px;
    box-sizing: border-box;
    /* background: linear-gradient(#ecfdfc 55%,#fff 55%); */
}

main > div{
    width:calc(100% - 20px);
    max-width:450px;
    background: #fff;
    border-radius:1vw;
}

.step_indicator{
    font-weight:300;
    font-size:13px;
    margin-bottom:20px;
}

.step_container{
    border-radius: 20px;
    padding: 2vw;
    max-height:70vh;
}
#step_2{
    height:75vh;
}
.step_container .title{
    font-weight:bold;
    font-size:30px;
    color:#125D55;
    margin-bottom:10px;
}
.step_container .title + div{
    margin-bottom:20px;
}

.submit_container{
    text-align:center;
    margin-top:30px;
}
label{
    display:block;
    margin-bottom:5px;
    font-weight:600;
}
input{
    height:35px;
    padding:0 10px;
    border-radius:10px;
    box-sizing: border-box;
    margin-bottom:15px;
    box-shadow: 2px 2px 10px #00000010;
    border:none;
    width:100%;
}
input:focus-visible{
    outline: none;
}

.submit_container .btn{
    background:#FF6100;
    color:#FFF;
    border-radius:5px;
    cursor:pointer;
    margin-bottom:5px;
}

#register{
    max-height:calc(100% - 220px);
    overflow-y: scroll;
    margin-bottom:20px;
    padding:0 10px 0 0;
}
#register::-webkit-scrollbar{
    appearance: none;
    -webkit-appearance: none;
    width:7px;
}
#register::-webkit-scrollbar-thumb{
    background-color: #0f8f8540;
    border-radius:10px;
    width:7px;
}

.gender_container{
    display:flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom:10px;
}
.gender_container .inputs_container{
    display:flex;
    align-items: center;
}
.gender_container .inputs_container > div{
    margin-left:10px;
}
.gender_container .inputs_container label{
    display:inline-block;
}
.gender_container .inputs_container > div input[type="radio"]{
    height:20px;
    width:20px;
    margin-bottom:0;
    vertical-align: middle;
}

.error *{
    text-align: center;
    color:#FF6100;
}

#cgu{
    height:20px;
    width:20px;
    vertical-align: middle;
    margin-bottom:0;
}

#cgu + label{
    margin-bottom:0;
    margin-left:4px;
    display:inline-block;
}

.inscription_link{
    margin-top:10px;
    text-align:center;
    margin-bottom:10px;
}
.inscription_link a{
    font-weight:bold;
}


@media screen and (max-width:1200px){

    main > div{
        border-radius:10px;
    }
    .step_container{
        padding:10px;
    }
    .step_container .title{
        font-size:18px;
    }
    #register{
        max-height:calc(100% - 190px);
    }
    .step_container{
        max-height:80vh;
    }
    #step_2{
        height:80vh;
    }
}