/*!
 * Souhlasový checkbox, který plugin vkládá do formulářů (Nastavení → Consenta → Formuláře).
 * Widget na stránce styluje .consenta-consent stejně, tohle jen doplňuje obal a chybu.
 */
.consenta-form-consent {
    display: block;
    margin: .75em 0;
    text-align: left;
}

.consenta-form-consent .consenta-consent {
    display: flex;
    gap: .55em;
    align-items: flex-start;
    margin: 0;
    line-height: 1.45;
    cursor: pointer;
}

.consenta-form-consent input[type=checkbox] {
    flex: none;
    width: 1.15em;
    height: 1.15em;
    margin: .14em 0 0;
    cursor: pointer;
}

.consenta-form-consent a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.consenta-form-consent__error {
    display: block;
    margin-top: .35em;
    font-size: .9em;
    color: #b91c1c;
}

/* Gravity Forms má patičku s tlačítkem jako flex řádek — checkbox musí zabrat celou šířku. */
.gform_footer .consenta-form-consent-field {
    flex: 0 0 100%;
    width: 100%;
}
