#auth-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #00204a;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#auth-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#auth-loader .spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(0, 187, 240, 0.2);
    border-top-color: #00bbf0;
    border-radius: 50%;
    animation: auth-spin 0.8s linear infinite;
    margin-bottom: 16px;
}

#auth-loader .loading-text {
    font-size: 0.92rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: #00bbf0;
    font-family: 'Roboto', sans-serif;
}

@keyframes auth-spin {
    to {
        transform: rotate(360deg);
    }
}
