/* Écran de veille / Splash Screen pour DGoConnect */
.splash-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.splash-logo {
    width: 140px;
    height: auto;
    animation: pulse 2s infinite ease-in-out;
}

/* Indicateur de chargement aux couleurs de la marque */
.splash-loader {
    width: 40px;
    height: 40px;
    border: 4px solid #E5EBEA;
    border-top: 4px solid #2E8B57; /* Vert secondaire */
    border-radius: 50%;
    margin-top: 24px;
    animation: spin 1s linear infinite;
}

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

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}