
:root {
    --color-base: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%);
    --secondary-gradient: linear-gradient(to right, #d6e1f1, #cee4ff);
}

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.loader-bg {
    background-color: rgba(0, 128, 219, 0.5); /* Cambiado a #0080db */
    position: fixed;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    width: 80px;
    height: 80px;
    position: relative;
    left: 0;
    top: 0;
}

    .loader:after {
        content: " ";
        display: block;
        width: 64px;
        height: 64px;
        margin: 8px;
        border-radius: 50%;
        border: 6px solid #039fed;
        border-color: #039fed transparent #039fed transparent; 
        animation: loader 1.2s linear infinite;
    }

@keyframes loader {
    0% {
        transform: rotate(0deg);
    }

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