body {
    margin: 0;
    padding: 0;
}

.loader {
    position: fixed;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: none;
    height: 100%;
    background: #fff;
    justify-content: center;
    align-items: center;
    opacity: 1;
    z-index: 999;
    flex-direction: column;
    color: white;
    text-align: center;
}

.loading-bar {
    width: 0; /* Inicialmente ancho 0 */
    height: 10px;
    background: #ffffff; /* Color de la barra de progreso */
    animation: load 30s linear forwards; /* forwards para que se quede en su último estado */
}

.loading-dot {
    width: 40px;
    height: 40px;
    border: 4px solid transparent;
    border-top-color: #fff; /* Color de la bolita blanco */
    border-radius: 50%;
    animation: spin 1s linear infinite, blink 1s infinite;
    margin-top: 15px; /* Ajusta el margen superior según sea necesario */
}

.loading-text {
    font-size: 18px;
    font-weight: bold;
    padding: 20px;
    margin-top: 15px; /* Ajusta el margen superior según sea necesario */
}

.logon {
    max-width: 70%; /* Ajusta el ancho del logo según sea necesario */
    margin-top: 10px;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

@keyframes load {
    to {
        width: 100%;
    }
}
