#loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/res/img/load.gif);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 16px solid #007281;
    border-radius: 50%;
    border-top: 16px solid #00eeff;
    animation: spin 0.5s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logos {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}