/**
*
* @Copyright 2025 VOID SOFTWARE, S.A.
*
*/

.auth-callback-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 40px;
}

.auth-callback-screen h4 {
    font-size: 2.0rem;
    font-weight: 700;
    color: var(--color-purple);
}

.auth-callback-screen__dots-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dot {
    height: 20px;
    width: 20px;
    margin-right: 10px;
    border-radius: 10px;
    background-color: var(--color-purple);
    animation: pulse 1.5s infinite ease-in-out;
}

.dot:last-child {
    margin-right: 0;
}

.dot:nth-child(1) {
    animation-delay: -0.3s;
}

.dot:nth-child(2) {
    animation-delay: -0.1s;
}

.dot:nth-child(3) {
    animation-delay: 0.1s;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        background-color: #ccb7ef;
        box-shadow: 0 0 0 0 rgba(178, 212, 252, 0.7);
    }
    
    50% {
        transform: scale(1.2);
        background-color: #9372dd;
        box-shadow: 0 0 0 10px rgba(178, 212, 252, 0);
    }
    
    100% {
        transform: scale(0.8);
        background-color: #ccb7ef;
        box-shadow: 0 0 0 0 rgba(178, 212, 252, 0.7);
    }
}
