/**
 * Fichier  : /ott/logout/assets/css/style.css
 * Fonction : style global de la page logout
 */


/* ==================================================
   LOGOUT WRAPPER
================================================== */

#logout {
    position: relative;
    overflow: hidden;
}

#logout {
    min-height: 100vh;
}

#logout {
    color: var(--color-white);
}


/* ==================================================
   BOX SIZING
================================================== */

#logout,
#logout *,
#logout *::before,
#logout *::after {
    box-sizing: border-box;
}


/* ==================================================
   MAIN
================================================== */

#logout > main {
    position: relative;
    z-index: 1;
}

#logout > main {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}


/* ==================================================
   LINK RESET
================================================== */

#logout a {
    color: inherit;
    text-decoration: none;
}


/* ==================================================
   ACCESSIBILITY
================================================== */

#logout a:focus-visible,
#logout button:focus-visible {
    outline: none;
}

#logout a:focus-visible,
#logout button:focus-visible {
    box-shadow: var(--shadow-focus);
}


/* ==================================================
   RESPONSIVE
================================================== */

@media screen and (max-width: 768px) {

    #logout {
        padding: 22px 0 36px 0;
    }

}