/* BLOON Newsletter MailUp — stile base, neutro. Il tema puo' sovrascrivere tutto. */
:root {
    --bnl-btn: #C92A2A;
    --bnl-btn-hover: #E23535;
    --bnl-btn-text: #FFFFFF;
    --bnl-input-bg: #FFFFFF;
    --bnl-input-text: #0A0A0A;
    --bnl-font: inherit;
}
.bnl-form { width: 100%; max-width: 460px; font-family: var(--bnl-font); }
.bnl-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.bnl-row { display: flex; gap: 8px; flex-wrap: wrap; }
.bnl-row input[type="email"] {
    flex: 1 1 220px; min-width: 0; padding: 14px 16px; margin: 0;
    border: 0; border-radius: 0; box-shadow: none;
    background: var(--bnl-input-bg); color: var(--bnl-input-text);
    font-family: inherit; font-size: 15px; line-height: 1.2;
}
.bnl-row input[type="email"]:focus { outline: 2px solid var(--bnl-btn); outline-offset: 0; }
.bnl-row button {
    padding: 14px 26px; margin: 0; border: 0; border-radius: 0; cursor: pointer;
    background: var(--bnl-btn); color: var(--bnl-btn-text);
    font-family: inherit; font-size: 15px; font-weight: 800; line-height: 1.2;
    transition: background .18s ease, transform .18s ease;
}
.bnl-row button:hover { background: var(--bnl-btn-hover); transform: translateY(-2px); }
.bnl-consent {
    display: flex; gap: 8px; align-items: flex-start; margin: 10px 0 0;
    font-size: 12px; line-height: 1.5; color: inherit; opacity: .85; cursor: pointer;
}
.bnl-consent input { margin: 3px 0 0; flex: none; }
.bnl-consent a { color: inherit !important; text-decoration: underline !important; border: 0 !important; }
.bnl-msg { margin: 8px 0 0; font-size: 13px; font-weight: 600; color: inherit; }
.bnl-msg[hidden] { display: none; }
a.bnl-disabled { cursor: default; }
@media (max-width: 767px) {
    .bnl-form { max-width: none; }
    .bnl-row button { width: 100%; }
}
