/**
 * AKSRT Captcha Styles
 * 人机验证组件样式（从 functions.php 内联 CSS 抽取）
 *
 * @package AKSRT
 */

.aksrt-captcha-box{display:none}.aksrt-captcha-wrap{text-align:center}

/* Cloudflare Turnstile Modal */
.aksrt-captcha-modal-overlay{position:fixed;inset:0;z-index:99999;display:flex;align-items:center;justify-content:center}
.aksrt-captcha-modal-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.55);animation:aksrtFadeIn .2s ease}
.aksrt-captcha-modal-box{position:relative;background:var(--color-bg,#fff);border-radius:12px;box-shadow:0 20px 60px rgba(0,0,0,.3);width:90%;max-width:380px;animation:aksrtSlideUp .25s ease;overflow:hidden}
.aksrt-captcha-modal-header{display:flex;align-items:center;justify-content:space-between;padding:16px 20px;border-bottom:1px solid var(--color-border,#e5e7eb)}
.aksrt-captcha-modal-title{font-size:15px;font-weight:600;color:var(--color-text,#1f2937)}
.aksrt-captcha-modal-close{background:none;border:none;font-size:22px;color:var(--color-text-muted,#9ca3af);cursor:pointer;padding:0;line-height:1;width:28px;height:28px;display:flex;align-items:center;justify-content:center;border-radius:6px}.aksrt-captcha-modal-close:hover{background:var(--color-bg-hover,#f3f4f6);color:var(--color-text,#1f2937)}
.aksrt-captcha-modal-body{padding:20px}
.aksrt-captcha-modal-hint{font-size:13px;color:var(--color-text-muted,#9ca3af);margin:0 0 16px;text-align:center}
.aksrt-captcha-modal-widget{display:flex;justify-content:center}

@keyframes aksrtFadeIn{from{opacity:0}to{opacity:1}}
@keyframes aksrtSlideUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
