body {
    background-color: #f2f1fa !important;
}

.custom-loading {
    position: fixed;
    inset: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.custom-logo {
    width: 50%;
    height: 50%;
    background-image: url('/images/brand-roxo-tteofit.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: pulseHeart 1.2s infinite ease-in-out;
}

.custom-loading-text {
    margin-top: 1rem;
    font-weight: bold;
    text-align: center;
    color: #444;
}

@keyframes pulseHeart {
    0% {
        transform: scale(1);
    }

    20% {
        transform: scale(1.12);
    }

    40% {
        transform: scale(1);
    }

    60% {
        transform: scale(1.12);
    }

    100% {
        transform: scale(1);
    }
}

.custom-loading-text::after {
    content: "";
    animation: dotsLoading 1.6s steps(4, end) infinite;
}

@keyframes dotsLoading {
    0% {
        content: "";
    }

    25% {
        content: ".";
    }

    50% {
        content: "..";
    }

    75% {
        content: "...";
    }

    100% {
        content: "";
    }
}