@media all {
    html, body {
    }

    .login-page, .register.body {
        position: relative; /* nécessaire pour le pseudo-élément */
        color: rgb(255,255,255);
        overflow: hidden;
    }

    /* Pseudo-élément pour flouter le background */
    .login-page::before, .register.body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(https://yiac.fr/img/moon_mining.png);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        filter: blur(4px);
        z-index: -1; /* derrière le contenu */
    }

    .login-box, .register-box {
        width: 360px;
        margin: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        background: rgba(48,48,48,.8);
        transform: translate(-50%, -50%);
        border: 5px solid #ecf0f1;
        border-radius: 40px;
        box-shadow: 0 1px 1px rgba(0,0,0,0.05);
        z-index: 1; /* devant le background flou */
    }

    .login-logo, .register-logo {
        font-size: 35px;
        width: 200px;
        height: 300px;
        text-align: center;
        margin-bottom: 25px;
        font-weight: 300;
        content: url(https://yiac.fr/img/logoYIAC.png);
        margin-top: 50px;
    }

    .login-logo::before, .register-logo::before {
        display: block;
        width: 128px;
        height:128px;
        margin: 0 auto;
        border-radius: 50%;
        margin-bottom: 50px;
    }

    .login-box-body, .register-box-body {
        background: transparent;
        padding: 20px;
        border-top: 0;
        color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertical */
    align-items: center;     /* horizontal */
    text-align: center;      /* centrer le texte */
    height: 100%;
    }

   /* Cacher le texte SeAT sur la page d'accueil */
    .seat-font {
        display: none !important;
    }
     

}
