/* Styles pour les boutons d'inscription */

.btn-inscription-container {
    margin: 2rem 0;
    text-align: center;
}

.btn-inscription-container .d-flex {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Animation pour les boutons */
.btn-lg {
    transition: all 0.3s ease;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Bouton d'inscription principal */
.btn-primary.btn-lg {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    color: white;
}

.btn-primary.btn-lg:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px) scale(1.02);
}

/* Bouton déjà inscrit */
.btn-success.btn-lg {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    border: none;
    color: white;
    cursor: not-allowed;
}

.btn-success.btn-lg:disabled {
    opacity: 0.8;
}

/* Bouton de désinscription */
.btn-outline-danger.btn-lg {
    border: 2px solid #dc3545;
    color: #dc3545;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-danger.btn-lg:hover {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border-color: #dc3545;
    transform: translateY(-2px);
}

/* Bouton de connexion */
.btn-outline-primary.btn-lg {
    border: 2px solid #007bff;
    color: #007bff;
    background: transparent;
}

.btn-outline-primary.btn-lg:hover {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-color: #007bff;
}

/* Icônes dans les boutons */
.btn-lg i {
    font-size: 1.1em;
    margin-right: 8px;
}

/* Animation d'apparition */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-inscription-container {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .btn-inscription-container .d-flex {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-lg {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Effet de pulsation pour le bouton principal */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 123, 255, 0.5);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    }
}

.btn-primary.btn-lg:not(:disabled) {
    animation: pulse 2s infinite;
}

.btn-primary.btn-lg:hover {
    animation: none;
}