#loginV3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
    width: 100%;
    padding: 0 0.75rem;
    box-sizing: border-box;
}

#loginV3 .ligneEnHaut {
    border-top: thin solid #dbdbdb;
    margin-bottom: 10px;
    padding-top: 5px;
}

#loginV3 #conteneurFormulaire {
    font-size: 16px;
    width: 100%;
    max-width: 34rem;
    border: 1px solid lightgray;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0 10px 10px;
    box-sizing: border-box;
    box-shadow: 5px 5px 5px #80808080;
    margin: 0 auto;
    background-color: white;
}

#loginV3 #conteneurFormulaire {
    position: relative;
    overflow: visible;
}

/* DECOMMENTER POUR NOEL */
/*
#loginV3 #conteneurFormulaire::before {
    content: "";
    position: absolute;

    top: -269px;
    left: -72px;
    right: -17px;
    bottom: 0px;
    
    background: url('/images/noel/decoration.svg') no-repeat center;
    background-size: 100% 100%;
    
    pointer-events: none;
    z-index: 10;
}
*/
#loginV3 #conteneurFormulaire input {
    border: none !important;
    outline: none;
    box-sizing: border-box;
}

#loginV3 #headerFormulaire,
#loginV3 #footerFormulaire {
    width: 100%;
    height: 10px;
    display: flex;
    margin-bottom: 1em;
}

#loginV3 #headerFormulaire {
    justify-content: flex-start;
    align-items: flex-start;
}

#loginV3 #footerFormulaire {
    justify-content: flex-end;
    align-items: flex-end;
    margin-bottom: 0;
}

#loginV3 #headerFormulaire img,
#loginV3 #footerFormulaire img {
    width: 60px;
    height: 60px;
    filter: saturate(2.5);
}

#loginV3 #titreFormulaire {
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1em;
    color: rgb(83, 83, 83);
}

#loginV3 #informationsConnexion {
    width: 100%;
    padding: 0 1em;
    box-sizing: border-box;
}

#loginV3 #informationsConnexion form {
    width: 100%;
}

#loginV3 #informationsConnexion input[type="text"],
#loginV3 #informationsConnexion input[type="password"] {
    width: 100%;
    height: 2.2em;
    margin: 10px 0;
    padding: 0 10px;
    outline: none !important;
    border-bottom: 1px solid lightgray !important;
}

#loginV3 #compteSelectionne {
    margin: 0 0 10px;
    font-size: 13px;
    color: #555;
    word-break: break-word;
}

#loginV3 #compteSelectionne p {
    margin: 0;
}

#loginV3 #conteneurMotDePasse {
    display: flex;
    align-items: center;
    width: 100%;
}

#loginV3 #conteneurMotDePasse #password {
    margin-right: 8px;
}

#loginV3 #checkBoxSession {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    margin: 1em 0 10px;
    text-align: center;
}

#loginV3 #boutons {
    display: flex;
    justify-content: center;
    gap: 2em;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

#loginV3 #boutons button,
#loginV3 #btn-connect-submit {
    border: none;
    border-radius: 15px;
    height: 30px;
    min-width: 10em;
    padding: 0 1em;
}

#btn-connect-submit {
    background-color: #82bfe7;
    color: white;
}

#btn-connect-submit:hover {
   background-color: #82bfe7 !important;
}

#loginV3 button:hover {
    background-color: aliceblue;
}

#loginV3 #texteSupport {
    width: 100%;
    border-top: 1px solid lightgray;
    border-bottom: 1px solid lightgray;
    font-size: 12px;
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 10px;
    margin-bottom: 3px;
    box-sizing: border-box;
}

#loginV3 #texteSupport a {
    color: black;
    text-decoration: none;
}

#loginV3 #texteSupport a:hover {
    text-decoration: underline;
}

#loginV3 #telechargements {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#loginV3 #telechargements a {
    margin-top: 1em;
    font-size: 12px;
    color: black;
    text-decoration: none;
}

#loginV3 #telechargements a:hover {
    text-decoration: underline;
}

#loginV3 .custom-checkbox {
    display: none;
}

#loginV3 .checkbox-label {
    display: inline-block;
    width: 20px;
    height: 18px;
    background-image: url('../images/oeilCache.png');
    background-size: cover;
    cursor: pointer;
}

#loginV3 .custom-checkbox:checked + .checkbox-label {
    background-image: url('../images/oeil.png');
}