/* ID294 - reCAPTCHA v3: notice shown when the security check was refused.
   Sits above the bootstrap modal (z-index 1050) so it also works on top of the
   provisional registration modal. */
.security-notice-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.35);
}

.security-notice-box {
    position: relative;
    width: 100%;
    max-width: 320px;
    padding: 32px 24px 24px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.security-notice-close {
    position: absolute;
    top: 6px;
    right: 12px;
    padding: 0;
    border: none;
    background: none;
    color: #333;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

.security-notice-text {
    margin: 0;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

.security-notice-actions {
    margin-top: 20px;
    text-align: center;
}

.security-notice-ok {
    min-width: 88px;
    padding: 6px 20px;
    border: none;
    border-radius: 4px;
    background: #FDBC00;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}

.security-notice-ok:hover {
    opacity: 0.85;
}
