

/************************************/
/*         GALERIE                  */
/************************************/
.TitreGal{
    text-align: center;
    margin-bottom: 10px;

}

.galerie { 
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    width: 95%;  
    margin-bottom: 15px;
}

.photoGal {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 15px;
    padding: 10px;
    max-width: 300px;
    min-height: 300px;
    
}
.photoGal img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: 0.3s;
    
}
      
.caption {
    
    text-align: center;
    margin-top: 8px;
    font-size: 14px;
    color: #ffffff;
}
.nomPhoto{
    margin-top: 5px;
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.nomPhoto i{
    padding-top: 10px;
    color: white;
}
        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }
        .lightbox img {
            max-width: 90%;
            max-height: 80%;
            border-radius: 8px;
            box-shadow: 0 0 15px rgba(0,0,0,0.5);
        }
        .lightbox.active {
            display: flex;
        }
        .close {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 40px;
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            cursor: pointer;
        }
        .close:hover {
            color: #f00;
        }



/**************************************************/
/********** connexion galerie **********************/
/******************************************************/
.ContainerMiniature{
    display: flex;
    flex-wrap: wrap;
}
.boutonConnect{
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    height: 80%;
    width: 80%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
}

.ContainerConnectGelarie{
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.ContainerConnectGelarie h2{
    color: white;
    margin: 10px 0;
    padding: 30px 10px;
    text-decoration: none;
    font-size: 1.9rem;
    border-radius: 25px; 
}

.photoConnexionGalerie h2{
    background-color: rgba(99, 98, 98, 0);
}

.photoConnexionGalerie{
    background-color: rgba(99, 98, 98, 0.562);
    border-radius: 20px;
    height: auto;
    display: flex;
    margin: 10px;
    display: flex;
    flex-direction: column;
   justify-content: space-between;

}

.photoConnexionGalerie img{
    min-width:200px;
    max-height: 300px;
    border-radius: 25% ;
}

.loginGalerie{
   /* background-color: rgba(99, 98, 98, 0.562);*/
    width: 100%;
    align-self: flex-end;
    padding: 5px 0;
    
}
.photoConnexionGalerie form{
    background-color: rgba(99, 98, 98, 0);
}
.photoConnexionGalerie .inputmdp{
 font-size: 1rem;

text-align: center;
background-color: #ffffff96;
}


.erreurConnexionGal{
    text-align: center;
    color: rgb(217, 255, 0);
    width: auto;
    padding: 5px;
 background-color: rgba(99, 98, 98, 0);

}
.photoConnexionGalerie .ctaGal {
    background-color: #e05119;
    
    display: flex;
    

}