.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{    
    padding: 2vw 1vw;
    box-shadow: 0 4px 10px #00000015;
    border-radius: 20px;
    width:calc(100% - 40px);
    max-width: 450px;
    background:#FFF;
}

main > div .lock_img{    
    width:150px;
    height:150px;
    object-fit:contain;
}

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;
}
#password{
    margin-bottom:5px;
}
#password + div a{
    color:#FF6100;
}
.submit_container{
    text-align:center;
    margin-top:30px;
}

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

.inscription_link a{
    text-decoration: underline;
    font-weight:bold;
}

#error{
    text-align:center;
    color:#ff6100;
    margin-bottom:10px;
}

@media screen and (max-width:1200px){
    main > div{    
        padding:20px 15px;
        box-shadow: 0 4px 10px #00000015;
        border-radius: 20px;
        width:calc(100% - 20px);
        max-width: 450px;
        background:#FFF;
        box-sizing: border-box;
    }
    #error{
        font-size:12px;
    }
    main > div .lock_img{    
        width:35vw;
        height:35vw;
        object-fit:contain;
    }
    .h1{
        font-size: 25px;
        margin-bottom:20px;
    }
}