.dissableplugin form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 50px;
}

.dissableplugin label {
    width: 25%;
    flex: 0 0 calc(25% - 25px);
    margin: 10px 0px;
}

/* Style général pour la case à cocher */
.dissableplugin input[type="checkbox"] {
    /* Augmenter la taille de la case à cocher */
    width: 25px;
    height: 25px;
    /* Style de la case à cocher */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    background-color: #f0f0f0;
    border: 2px solid #ccc;
    border-radius: 0px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    margin: 0px;
    margin-right: 10px;
    box-shadow: none;
}

/* Style pour l'état "checked" */
.dissableplugin input[type="checkbox"]:checked {
    background-color: #00A5BD; /* Couleur de fond quand coché */
    border-color: #00A5BD; /* Couleur de la bordure quand coché */
}

/* Animation de check */
.dissableplugin input[type="checkbox"]:checked::before {
    content: '✔';
    color: white;
    position: absolute;
    top: 12px;
    left: 4px;
    font-size: 18px;
    transition: transform 0.3s ease;
    transform: scale(0);
    animation: checkmark-animation 0.3s forwards;
}

/* Animation du checkmark */
@keyframes checkmark-animation {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
.dissableplugin .button.button-primary {
    display: inline-flex;
    align-items: center;
    padding: 20px 50px;
    font-size: 20px;
    font-weight: 600;
    background-color: #00A5BD;
    color: #fff;
    border-color: #00A5BD;
    transition: 0.3s ease-in-out;
    box-shadow: none;
    overflow: hidden !important;
    border-style: solid;
}
.dissableplugin .button.button-primary:hover {
    background-color: #fff;
    color: #00A5BD;
    border-color: #00A5BD;
    cursor: pointer;
}
.dissableplugin > form > p {
    width: 100%;
    margin-top: 30px;
}