/* =====================================
   LOGIN BANNER - Invitation à la connexion
   ===================================== */

/* Login Banner */
.login-banner {
    background: linear-gradient(135deg, #007aff 0%, #5856d6 100%);
    color: white;
    padding: 14px 0;
    box-shadow: 0 2px 12px rgba(0, 122, 255, 0.15);
    animation: slideDown 0.4s ease-out;
}

.login-banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.login-banner-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #007aff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(255, 255, 255, 0.2);
}

.login-banner-btn:hover {
    background: white;
    transform: translateY(-2px);
    text-decoration: none;
    color: #0056b3;
    border-color: white;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.login-banner-text {
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.rotating-message {
    transition: all 0.3s ease;
    font-weight: 600;
    color: #ffd60a;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    display: inline-block;
    min-width: 200px;
    text-align: left;
}

.login-banner-text {
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: width 0.3s ease;
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .login-banner {
        padding: 10px 0;
    }
    
    .login-banner-content {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .login-banner-text {
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .login-banner-btn {
        font-size: 0.85rem;
        padding: 6px 14px;
    }
}