﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Inter', sans-serif;
    background: #f5f7fa;
    color: #333;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 0 20px;
}

.logo {
    width: 120px;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 600;
    color: #1a202c;
}

.spinner {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .spinner div {
        position: absolute;
        top: 33px;
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background: #4a90e2;
        animation-timing-function: cubic-bezier(0, 1, 1, 0);
    }

        .spinner div:nth-child(1) {
            left: 8px;
            animation: ellipsis1 0.6s infinite;
        }

        .spinner div:nth-child(2) {
            left: 8px;
            animation: ellipsis2 0.6s infinite;
        }

        .spinner div:nth-child(3) {
            left: 32px;
            animation: ellipsis2 0.6s infinite;
        }

        .spinner div:nth-child(4) {
            left: 56px;
            animation: ellipsis3 0.6s infinite;
        }

@keyframes ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}

@keyframes ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

a.redirect-link {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
}

p.fallback {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #666;
}

.icon-sign {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    color: #4a90e2; /* mismo color del spinner */
}