@font-face{font-display:swap;font-family:SourceSans3;src:url(../fonts/SourceSans3-VariableFont_wght.ttf) format("truetype"),url(../fonts/SourceSans3-Italic-VariableFont_wght.ttf) format("truetype")}

@media (min-width: 1200px) {
    .login-left {
        flex: 0 0 38.75%;
        max-width: 38.75%;
    }

    .login-right {
        flex: 1;
        max-width: 100%;
    }
}

html, body {
    height: 100%;
}
.login-left {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    z-index: 2; /* Toujours au-dessus si l'image dépasse */
    padding: 7rem 5rem;
}

@media (max-width: 576px) {
    .login-left {
        padding: 2rem 1.5rem;
    }
}

.login-right {
    position: relative;
    background-color: #013A58;
    height: 100%;
    overflow: hidden;
}
.login-right img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: auto;
    width: auto;
    max-height: 100%;
    max-width: 100%;
}
.login-width {
    width: 100%;
    max-width: 28rem;
}
.logo {
    margin-bottom: 1rem;
    max-width: 200px;
}
.forgotten-password {
    width: 100%;
    height: 19px;

    font-style: italic;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: right;
    text-decoration-line: underline;

    color: #003A58;

    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}
.forgotten-password span a {
    font-family: 'SourceSans3';
    color: #003A58;
}
.forgotten-password {
    margin-bottom: 2rem
}

.password-visibility {
    background: #fff;
}
.password-visibility i {
    display: inline-block;
    width: 1.5rem;   /* ajuste selon ton besoin */
    height: 1.5rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.password-visibility i.eye {
    background-image: url('../img/eye.svg');
}
.password-visibility i.eye-off {
    background-image: url('../img/eye-off.svg');
}
#password, #password-new, #password-confirm {
    border-right: 0;
}