body{
    font-family: 'URW Chancery L', cursive;
}

.content-header{
    display: flex;
    align-items: center;
    
    padding: 15px;
    height:55px;
    width: 96%;

    margin: auto;
    margin-top: -15px;

    -webkit-box-shadow: 0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12);
    box-shadow: 0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12);

    border-radius:6px;

    justify-content: center; /* Centrer horizontalement */
    text-align: center; /* Centrer le texte horizontalement */
}

#inscr{
    position: absolute;
    margin-left: -80%;
}

#connex{

    position: absolute;
    right: 70px;    
}


.a-inscr{
    text-decoration: none;
    color: rgb(0,0,0);
}

.a-inscr:hover{
    color: rgb(0,0,255);
}
    
#img-jeanivan{
    position: absolute;
    margin: auto;
}

.content-body {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    margin-top: 10%;
}

.boite-login{
    width: 50%;
    margin:0;
    
    /* font-family: Arial, Helvetica, sans-serif; */
    background-color:#fff;border:0 solid #e6e6e6;
    
    /*-webkit-box-shadow:0 0 6px 0 rgba(0,14,156,.2);
    box-shadow:0 0 6px rgba(0,14,156,.2);
    */
    -webkit-box-shadow: 0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12);
    box-shadow: 0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12);

    border-radius:6px;

    justify-content: center; /* Centrer horizontalement */
    text-align: center; /* Centrer le texte horizontalement */
}

#img-anonimus{
    transition: scale(0.2) transform 0.2s ease; /* Animation de transition pour une transformation en douceur */
    transform: scale(0.8);
}

#img-anonimus:hover{
    transform: scale(1); /* Augmenter la taille de l'image de 20% lorsqu'elle est survolée */
}


.form-input {
    width: 250px;
    height: 25px;
    padding: 6px 12px;
    
    margin-top: 10px;
    margin-bottom: 15px;

    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;

    justify-content: center; /* Centrer horizontalement */
    text-align: center; /* Centrer le texte horizontalement */

    font-family: 'URW Chancery L', cursive;
    font-size: 15px;
    
}

.button-connect {
    width: 250px;
    padding: 12px;
    margin-top: 15px;
    margin-bottom: 35px;
    background-color: #007BFF;
    color: #fff;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 8px;
}

#img-email, #img-pass{
    position: absolute;
    margin-left: 10px;
    margin-top: 15px;
}

#img-pass-oeil, #img-pass-oeil-confirm{
    height: 25px;
    width: 45px;

    position: relative;
    right: 50px;
    transform: translateY(30%);

}

#form-input-password{
    margin-left: 50px;
}

/* Media query pour les écrans de moins de 768px de large (smartphones) */
@media (max-width: 768px) {
    .boite-login{
        width: 80%;
        margin-top: 15%;
    }
    #inscr{
        position: absolute;
        margin-left: -75%;
        font-size: 130%;
    }
    #img-jeanivan{
        position: absolute;
        margin: auto;
        width: 35%;
        height: auto;
    }
    .content-header{
        display: flex;
        align-items: center;
        
        padding: 15px;
        height:55px;
        width: 93%;
    }
}

@media (orientation: landscape){
    .content-body {
        margin-top: 7%;
    }
}