.gate-wrap{
display:flex;align-items:center;justify-content:center;
min-height:100vh;
background:#0a0a14;
font-family:-apple-system,BlinkMacSystemFont,"Malgun Gothic","맑은 고딕",sans-serif;
position:fixed;top:0;left:0;right:0;bottom:0;z-index:9999;
overflow:hidden;
}
.gate-wrap::before{
content:'';position:absolute;
width:600px;height:600px;border-radius:50%;top:-200px;right:-200px;
background:radial-gradient(circle,rgba(124,58,237,0.12) 0%,transparent 65%);
pointer-events:none;
}
.gate-wrap::after{
content:'';position:absolute;
width:400px;height:400px;border-radius:50%;bottom:-150px;left:-100px;
background:radial-gradient(circle,rgba(59,130,246,0.08) 0%,transparent 65%);
pointer-events:none;
}
.gate-card{
background:rgba(255,255,255,0.03);
border:1px solid rgba(255,255,255,0.08);
border-radius:24px;
padding:40px 36px 36px;
max-width:360px;width:90%;
position:relative;z-index:1;
box-shadow:0 32px 64px rgba(0,0,0,0.6),inset 0 1px 0 rgba(255,255,255,0.06);
backdrop-filter:blur(20px);
}
.gate-logo{
text-align:center;margin-bottom:28px;
}
.gate-logo .gate-icon{font-size:44px;display:block;margin-bottom:10px;line-height:1;}
.gate-logo h2{
font-size:22px;font-weight:900;margin:0 0 4px;
background:linear-gradient(135deg,#22262d,#7aabe6);
-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.gate-logo p{font-size:11px;color:#a6b0bd;margin:0;}
.gate-tabs{
display:flex;gap:0;margin-bottom:24px;
background:rgba(255,255,255,0.04);border-radius:10px;padding:3px;
}
.gate-tab{
flex:1;padding:8px;border:none;background:transparent;
font-size:13px;font-weight:600;color:#a6b0bd;
cursor:pointer;border-radius:8px;transition:all 0.2s;font-family:inherit;
}
.gate-tab.active{background:rgba(124,58,237,0.8);color:#fff;box-shadow:0 2px 8px rgba(124,58,237,0.4);}
.gate-field{margin-bottom:12px;}
.gate-field input{
width:100%;padding:13px 16px;
border-radius:10px;border:1.5px solid rgba(255,255,255,0.08);
background:rgba(255,255,255,0.05);color:#c4cdd9;
font-size:14px;outline:none;font-family:inherit;
box-sizing:border-box;transition:border-color 0.2s,background 0.2s;
}
.gate-field input::placeholder{color:#a6b0bd;}
.gate-field input:focus{
border-color:rgba(124,58,237,0.6);
background:rgba(124,58,237,0.06);
}
.gate-btn-primary{
width:100%;padding:13px;margin-top:4px;
background:linear-gradient(135deg,#4f8ad0,#4278ba);
color:#fff;border:none;border-radius:10px;
font-size:14px;font-weight:700;cursor:pointer;font-family:inherit;
transition:opacity 0.2s,transform 0.1s;
box-shadow:0 4px 16px rgba(124,58,237,0.4);
}
.gate-btn-primary:hover{opacity:0.9;}
.gate-btn-primary:active{transform:scale(0.98);}
.gate-msg{font-size:12px;min-height:18px;margin:8px 0 0;text-align:center;}