#loader {
    display: none;
}

.loaderInscription {
    height: calc(100vh + 80px);
    width: 100vw;
    flex-direction: column;
    position: fixed;
    z-index: 10;
    background-color: #CBEFFF;
    display: flex !important;
    justify-content: center;
    align-items: center;
    color: #000;
    font-weight: 700;
    margin-top: -80px;
    font-family: "Inter";
}

.Mathia {
    max-width: 120px !important;
    animation: slideIn infinite alternate 3s ease-in-out;
}

@keyframes slideIn {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-120px);
    }
}