/* Bouton Twint */
.twint-button {
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.twint-button:hover {
    background-color: #333333;
    transform: scale(1.02);
}

.twint-button:active {
    background-color: #000000;
    transform: scale(0.98);
}