
.button-container {
    width: 100%;
    text-align: center;
}

.btn-inscription {
    background-image: url(/images/fondFiche.jpg);
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-inscription:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.btn-inscription:active {
    background-color: #00408b;

    transform: scale(1);
}

