/* What every lead form needs wherever it sits: the honeypot and the human-check dialog. Moved out
   of page-blog.css when /request-demo/ was wired to the CRM -- it uses the same gate as the blog
   sidebar form, and a page should not have to load the blog's sheet to get a dialog. */

/* Off-screen rather than display:none -- a bot that skips hidden fields would skip the trap. */
.bnt-honeypot {
    position: absolute !important;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

/* --- Verification dialog -------------------------------------------------------------------- */

.bnt-verify {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #0f172a8c;
}
.bnt-verify[hidden] { display: none; }
.bnt-verify__panel {
    position: relative;
    width: min(460px, 100%);
    padding: 28px 26px 22px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 20px 60px #00000040;
    text-align: center;
}
.bnt-verify__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 8px;
    background: var(--pale, #f6f7f9);
    color: #032d60;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}
.om-page .bnt-verify__title,
.bnt-verify__title { margin: 0 0 6px; font-size: 20px; font-weight: 700; color: #032d60; }
.bnt-verify__desc { margin: 0 0 18px; font-size: 14.5px; color: #616b76; }
.bnt-verify__widget { display: flex; justify-content: center; min-height: 65px; }
.bnt-verify__actions { display: flex; gap: 10px; justify-content: center; margin: 18px 0 0; }
.bnt-verify__btn {
    padding: 10px 16px;
    border: 0;
    border-radius: 8px;
    background: #e2e8f0;
    color: #012044;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}
.bnt-verify__btn--primary { background: var(--orange, #f9b233); color: #092b54; }
.bnt-verify__btn[hidden] { display: none; }
