/*
 * Self-hosted Altcha widget — visual styling.
 *
 * Loaded only when TURNSTILE_DISABLED=true (ru-proxy visitors). Mimics the
 * visual footprint of the Cloudflare Turnstile dark-theme widget so the form
 * layout doesn't shift between captcha branches:
 *   - same vertical space (~65 px)
 *   - same width (300 px) on desktop, fluid on mobile
 *   - same dark surface
 *
 * The hidden <input name="altcha"> carries the solution into form POST data;
 * the visible span is updated in-place by assets/js/altcha.js with status
 * text ("Verifying…", "✓ Verified (XXX ms)").
 */
.altcha-widget {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    max-width: 100%;
    height: 65px;
    padding: 0 16px;
    box-sizing: border-box;
    background: rgba(20, 20, 28, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: #d6d6d6;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.3;
    user-select: none;
}

.altcha-status {
    display: inline-block;
    text-align: left;
}
