.mws-turnstile-panel {
    --mws-turnstile-brand: #c7443e;
    --mws-turnstile-ink: #172033;
    --mws-turnstile-muted: #6f7889;
    --mws-turnstile-line: #e1e5ec;
    box-sizing: border-box;
    clear: both;
    width: 100%;
    padding: 13px 15px;
    margin: 20px 0 18px;
    background: #f7f8fa;
    border: 1px solid var(--mws-turnstile-line);
    border-radius: 10px;
    text-align: left;
}

.mws-turnstile-heading {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0;
    color: var(--mws-turnstile-ink);
}

.mws-turnstile-heading strong,
.mws-turnstile-heading small {
    display: block;
}

.mws-turnstile-heading strong {
    font-size: 0.95rem;
    font-weight: 750;
}

.mws-turnstile-heading small {
    margin-top: 1px;
    color: var(--mws-turnstile-muted);
    font-size: 0.76rem;
}

.mws-turnstile-icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    background: #fbeeed;
    border-radius: 9px;
    color: var(--mws-turnstile-brand);
}

.mws-turnstile-panel.is-verified .mws-turnstile-icon {
    background: #e8f6ef;
    color: #16845c;
}

.mws-turnstile-panel.is-error .mws-turnstile-icon {
    background: #fcebed;
    color: #983039;
}

.mws-turnstile-widget {
    width: 100%;
    min-height: 65px;
    margin-top: 14px;
}

.mws-turnstile-panel.is-compact:not(.is-interactive) .mws-turnstile-widget {
    height: 0;
    min-height: 0;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.mws-turnstile-panel.is-interactive .mws-turnstile-widget {
    height: auto;
    min-height: 65px;
    margin-top: 14px;
    overflow: visible;
    opacity: 1;
    pointer-events: auto;
}

.mws-turnstile-feedback {
    display: none;
    padding: 10px 12px;
    margin-top: 12px;
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 650;
}

.mws-turnstile-feedback.is-error,
.mws-turnstile-feedback.is-warning {
    display: block;
}

.mws-turnstile-feedback.is-error {
    background: #fcebed;
    color: #983039;
}

.mws-turnstile-feedback.is-warning {
    background: #fff8e6;
    color: #805400;
}

@media (max-width: 575px) {
    .mws-turnstile-panel {
        padding: 12px 13px;
    }
}
