﻿


.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f4f4f4;
}

.logologo-container {
    margin-bottom: 30px;
}

.logologo {
    max-width: 200px; /* Ajusta el tamaño según tu logo */
    max-height: 100px;
}

.loading-wave {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wave {
    width: 10px;
    height: 50px;
    background: linear-gradient(to bottom, #13244f, #d63384);
    margin: 0 3px;
    border-radius: 10px;
    animation: wave 1.2s ease-in-out infinite;
}

    .wave:nth-child(2) {
        animation-delay: -1.1s;
    }

    .wave:nth-child(3) {
        animation-delay: -1.0s;
    }

    .wave:nth-child(4) {
        animation-delay: -0.9s;
    }

    .wave:nth-child(5) {
        animation-delay: -0.8s;
    }

.loading-text {
    margin-top: 15px;
    color: #13244f;
    font-weight: bold;
}

@keyframes wave {
    0%, 40%, 100% {
        transform: scaleY(0.4);
    }

    20% {
        transform: scaleY(1);
    }
}


