/* form-loader.css */
#global-form-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.85); /* Fond semi-transparent blanc/clair */
    backdrop-filter: blur(5px);
    z-index: 999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#global-form-loader.active {
    opacity: 1;
    visibility: visible;
}

.form-loader-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(0, 170, 228, 0.2); /* Bleu Sconnect Plus très clair */
    border-top: 5px solid #00AAE4; /* Bleu Sconnect Plus */
    border-radius: 50%;
    animation: form-loader-spin 1s linear infinite;
    margin-bottom: 20px;
}

.form-loader-text {
    font-family: 'Poppins', 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.5px;
    animation: form-loader-pulse 1.5s ease-in-out infinite;
}

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

@keyframes form-loader-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .form-loader-spinner {
        width: 40px;
        height: 40px;
        border-width: 4px;
        margin-bottom: 15px;
    }

    .form-loader-text {
        font-size: 14px;
    }
}
