/* Styles pour l'authentification et le bouton de connexion */

/* Bouton de connexion dans la barre de navigation - identique au bouton de contact */
.btn-login {
    background-color: #e30613 !important;
    color: #fff !important;
    padding: 8px 20px !important;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    line-height: 1.5;
    margin-left: 10px;
}

.btn-login:hover {
    background-color: #b80510 !important;
    color: #fff !important;
}

.btn-login i {
    margin-right: 5px;
    font-size: 14px;
}

/* Styles pour la version responsive */
@media (max-width: 768px) {
    .btn-login {
        margin: 10px 0;
        padding: 8px 12px;
        font-size: 14px;
    }
}

/* Styles pour les écrans très petits */
@media (max-width: 480px) {
    .nav-right {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-login {
        margin: 5px 0;
        width: 100%;
        justify-content: center;
    }
}
