input[type="checkbox"]:checked {
    border-radius: 3px !important;
    border: 1px solid var(--primary-green)!important;
    background: var(--primary-green) !important;
    box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.05) !important;
    position: relative;
}

input[type="checkbox"]:checked::after {
    content: "✓";
    color: white;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    font-size: 0.75em;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.alert-renewal {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: black;
}

.alert-renewal form, .alert-renewal p {
    margin: 0;
}

.alert-renewal p {
        color: #1c1c1c;
    }

@media only screen and (max-width: 768px) {
    .alert-renewal {
        justify-content: center;
        text-align: center;
    }

    .tabs-demo {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .tabs-demo .tab-form-link {
        width: 100%;
        margin: 0 !important;
    }
}