.spa-loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: rgb(102, 41, 214);
}

.spa-loading-spinner {
    width: 5rem;
    height: 5rem;
    background-color: #5b21b6;
    border-radius: 50%;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
    margin-bottom: 4rem;
}

.spa-loading-text {
    padding-top: 2rem;
    font-size: 1.875rem;
    font-weight: bold;
    color: white;
    font-family: system-ui, -apple-system, sans-serif;
}

@keyframes ping {
    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}
