#forensysProcessingGate {
    position: fixed;
    inset: 0;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 18px;

    z-index: 2147483600;

    background:
        rgba(3, 12, 27, .78);

    backdrop-filter:
        blur(4px);
}

#forensysProcessingGate.show {
    display: flex;
}

.forensys-gate-card {

    width:
        min(470px, 100%);

    overflow: hidden;

    border-radius: 17px;

    background: white;

    color: #222;

    box-shadow:
        0 24px 70px
        rgba(0,0,0,.42);
}

.forensys-gate-head {

    padding:
        24px 25px 19px;

    background:
        linear-gradient(
            135deg,
            #4778ef,
            #315cca
        );

    color: white;
}

.forensys-gate-head h3 {

    margin: 0 0 6px;

    font-size: 22px;

    font-weight: 800;
}

.forensys-gate-head p {

    margin: 0;

    color:
        rgba(255,255,255,.82);

    font-size: 13px;
}

.forensys-gate-body {

    padding: 24px 25px;
}

.forensys-support-box {

    padding: 15px;

    margin-bottom: 19px;

    border-radius: 11px;

    background: #f3f6ff;

    border:
        1px solid #dce5ff;
}

.forensys-support-title {

    margin-bottom: 5px;

    color: #315cca;

    font-size: 15px;

    font-weight: 800;
}

.forensys-support-text {

    margin: 0;

    color: #5f6875;

    font-size: 13px;

    line-height: 1.5;
}

.forensys-captcha {

    padding: 16px;

    border-radius: 11px;

    background: #f8f9fb;

    border:
        1px solid #e4e7ec;
}

.forensys-captcha-question {

    margin-bottom: 10px;

    color: #252a31;

    font-size: 18px;

    font-weight: 800;

    text-align: center;
}

.forensys-gate-input {

    width: 100%;

    min-height: 46px;

    padding:
        9px 12px;

    border:
        1px solid #d6dae0;

    border-radius: 8px;

    font-size: 16px;

    text-align: center;
}

.forensys-gate-error {

    display: none;

    margin-top: 9px;

    color: #dc3545;

    font-size: 12px;

    text-align: center;
}

.forensys-gate-actions {

    display: flex;

    gap: 10px;

    margin-top: 19px;
}

.forensys-gate-btn {

    flex: 1;

    min-height: 45px;

    border: 0;

    border-radius: 8px;

    cursor: pointer;

    font-weight: 700;
}

.forensys-gate-cancel {

    background: #eef0f3;

    color: #4d535b;
}

.forensys-gate-continue {

    background: #4778ef;

    color: white;
}

.forensys-gate-continue:disabled {

    opacity: .65;

    cursor: wait;
}
