/*
|--------------------------------------------------------------------------
| ASSETS/CSS/GLOBAL.FOOTER.CSS
| Fusion de app.css + auth.css — page d'authentification uniquement
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Footer — dans le flux normal, collé au bas grâce au flex column
|--------------------------------------------------------------------------
*/

.auth-footer {
    width: 100%;
    background: rgba(245, 245, 247, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.auth-footer-inner {
    width: min(calc(100% - 64px), 66.666vw, 980px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
    height: 50px;
    border-top: 1px solid var(--line);
    font-size: var(--text-xs);
    color: var(--muted);
}

.auth-footer-links {
    display: flex;
    gap: 14px;
}

.auth-footer-links a       { color: inherit; text-decoration: none; }
.auth-footer-links a:hover { color: var(--text); }

/* "© Quorelix" en Host Grotesk comme le logo header */
.auth-footer-inner > span {
    font-family: "Host Grotesk", sans-serif;
    font-weight: 500;
}


