/* ==================== AUTH LOADING OVERLAY ==================== */
.auth-loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.auth-loading-content {
    text-align: center;
}

.auth-loading-message {
    color: #333;
    font-size: 18px;
    margin: 0 0 30px 0;
    font-weight: 600;
}

.auth-loading-spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    position: relative;
}

.spinner-ring {
    width: 100%;
    height: 100%;
    border: 3px solid rgba(74, 144, 226, 0.2);
    border-top-color: #4a90e2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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