footer {
    display: flex;
    justify-content: end;
    padding: 0.5rem;
    position: sticky;
    bottom: 0;
    background-color: var(--project-menu-background, var(--portailpro-menu-background));

    .footer-actions {
        display: flex;
        gap: 1rem;
        color: var(--project-primary-inverse);

        [type="submit"] {
            width: auto;
            margin-bottom: 0;
        }
    }
}

.footer-portailpro {
    display: flex;
    position: sticky;
    bottom: 0;
    background-color: var(--project-menu-background, var(--portailpro-menu-background));
    color: var(--project-menu-color, var(--portailpro-menu-color));
    a {
        display: flex;
        flex: 1;
        gap: 1rem;
        align-items: center;
        padding: 0 2rem;
        font-size: 0.8rem;
        font-weight: 700;
        text-align: right;
        color: inherit;
        text-decoration: none;
    }
}