#lupin-captcha-overlay{

position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:#000;

display:flex;
align-items:center;
justify-content:center;

z-index:999999;

}

.lupin-captcha-box{

background:#40230c;
padding:45px;
border-radius:22px;

color:#f3e18e;
text-align:center;

max-width:420px;
width:90%;

border:1px solid rgba(213,151,29,0.4);

box-shadow:0 0 35px rgba(213,151,29,0.5);

}

.lupin-captcha-box h2{

margin-bottom:12px;
color:#fff6c2;
font-size:26px;

}

.captcha-instruction{

color:#d5971d;
margin-bottom:25px;
font-weight:600;

}

.captcha-grid{

display:grid;
grid-template-columns:repeat(3,90px);
gap:18px;
justify-content:center;

}

.captcha-item{

height:90px;
width:90px;

font-size:34px;

border-radius:16px;
border:1px solid rgba(213,151,29,0.4);

background:#2a170a;
color:#f3e18e;

cursor:pointer;
transition:0.25s;

}

.captcha-item:hover{

background:#d5971d;
color:#40230c;
transform:scale(1.05);
box-shadow:0 0 15px rgba(213,151,29,0.6);

}

.captcha-msg{

margin-top:20px;
color:#f3e18e;
font-weight:600;

}