*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Inter,sans-serif;
    background:#081018;
    color:white;
    height:100vh;
    overflow:hidden;
}

.login-shell{
    display:flex;
    height:100vh;
}

.login-left{

    flex:1.4;
    padding:60px;
    display:flex;
    flex-direction:column;
    justify-content:center;

    position:relative;
    overflow:hidden;
}

.login-right{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    z-index:2;
}

.branding h1{

    font-size:64px;

    font-weight:800;

    line-height:1;
}

.branding h2{

    color:#00d4ff;

    margin-top:10px;

    margin-bottom:20px;

    letter-spacing:2px;
}

.branding p{
    color:#94a3b8;
    max-width:600px;
}

.logo-circle{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#00d4ff;
    color:black;
    font-weight:bold;
    font-size:32px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.platform-info{
    display:flex;
    gap:20px;
    margin-top:50px;
}

.info-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.1);
    padding:20px;
    border-radius:14px;
    min-width:180px;
}

.info-card strong{
    display:block;
    margin-bottom:8px;
}

.info-card span{
    color:#94a3b8;
}

.login-card{
    width:460px;

    background:
    rgba(15,23,42,.85);

    backdrop-filter:blur(24px);

    border:
    1px solid rgba(0,212,255,.2);

    border-radius:18px;

    padding:45px;

    box-shadow:
    0 0 30px rgba(0,212,255,.08);
}

.login-card h2{
    margin-bottom:10px;
}

.subtitle{
    color:#94a3b8;
    margin-bottom:25px;
}

.login-card input{

    width:100%;

    padding:15px;

    margin-bottom:15px;

    border:
    1px solid #1f2937;

    border-radius:10px;

    background:#0f172a;

    color:white;

    transition:.25s;
}

.login-card input:focus{

    outline:none;

    border-color:#00d4ff;

    box-shadow:
    0 0 15px rgba(0,212,255,.25);
}

.login-card button{

    width:100%;

    padding:15px;

    border:none;

    border-radius:10px;

    background:#00d4ff;

    color:#081018;

    font-weight:700;

    letter-spacing:1px;

    cursor:pointer;

    transition:.25s;
}

.login-card button:hover{

    transform:translateY(-2px);

    box-shadow:
    0 0 20px rgba(0,212,255,.4);
}

.security-notice{
    margin-top:25px;
    color:#94a3b8;
    font-size:12px;
    line-height:1.6;
}

#errorBox{
    margin-top:15px;
    color:#ef4444;
}

.network-bg{
    position:fixed;
    inset:0;

    background:

    linear-gradient(
        rgba(255,255,255,.03) 1px,
        transparent 1px
    ),

    linear-gradient(
        90deg,
        rgba(255,255,255,.03) 1px,
        transparent 1px
    ),

    radial-gradient(
        circle at 20% 30%,
        rgba(0,212,255,.12),
        transparent 35%
    ),

    radial-gradient(
        circle at 80% 70%,
        rgba(0,212,255,.08),
        transparent 35%
    );

    background-size:
        60px 60px,
        60px 60px,
        auto,
        auto;

    animation:gridMove 25s linear infinite;
}

@keyframes gridMove{

    from{
        background-position:
            0 0,
            0 0,
            center,
            center;
    }

    to{
        background-position:
            60px 60px,
            60px 60px,
            center,
            center;
    }

}

@keyframes pulse{
    0%{opacity:.6;}
    50%{opacity:1;}
    100%{opacity:.6;}
}

.classification{

    display:inline-block;

    margin-top:18px;

    padding:8px 14px;

    border:
    1px solid #00d4ff;

    color:#00d4ff;

    font-size:11px;

    letter-spacing:2px;

    font-weight:600;
}

.modules{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-top:25px;
}

.modules span{

    background:#111827;

    border:
    1px solid #1f2937;

    padding:10px 12px;

    border-radius:8px;

    font-size:11px;

    letter-spacing:1px;
}

.access-status{

    color:#22c55e;

    font-size:12px;

    margin-bottom:20px;

    letter-spacing:1px;
}

.intel-panel{

    margin-top:50px;

    width:700px;
}

.intel-panel h3,
.modules-panel h3{

    color:#00d4ff;

    margin-bottom:20px;

    letter-spacing:2px;
}

.intel-grid{

    display:grid;

    grid-template-columns:
    repeat(2, 220px);

    gap:15px;
}

.intel-item{

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(255,255,255,.08);

    padding:18px;

    border-radius:12px;
}

.intel-item span{

    display:block;

    color:#94a3b8;

    margin-bottom:10px;
}

.intel-item strong{

    font-size:28px;

    color:#00d4ff;
}

.modules-panel{

    margin-top:40px;
}

.modules-panel ul{

    list-style:none;
}

.modules-panel li{

    padding:10px 0;

    color:#d1d5db;

    border-bottom:
    1px solid rgba(255,255,255,.05);
}

.access-status{

    color:#22c55e;

    margin-bottom:15px;

    font-size:12px;

    letter-spacing:2px;
}

.classification{

    display:inline-block;

    margin-bottom:25px;

    padding:8px 14px;

    border:
    1px solid #00d4ff;

    color:#00d4ff;

    font-size:11px;

    letter-spacing:2px;
}

.logo-circle{

    width:110px;
    height:110px;

    clip-path: polygon(
        25% 5%,
        75% 5%,
        100% 50%,
        75% 95%,
        25% 95%,
        0% 50%
    );

    background:#00d4ff;

    color:#081018;

    font-weight:800;

    font-size:30px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.terminal-meta{
    display:flex;
    flex-direction:column;
    gap:6px;
    margin-bottom:20px;
    color:#7dd3fc;
    font-size:11px;
    letter-spacing:1px;
}

.network-lines{

    position:fixed;
    inset:0;

    z-index:1;

    pointer-events:none;

    background-image:
        linear-gradient(
            rgba(0,212,255,.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0,212,255,.04) 1px,
            transparent 1px
        );

    background-size:
        60px 60px;

    animation:
        drift 30s linear infinite;
}

@keyframes drift{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-60px);
    }

}
.indo-watermark{

    position:absolute;

    top:50%;

    left:72%;

    transform:
        translate(-50%,-50%);

    width:950px;

    opacity:0.04;

    pointer-events:none;

    filter:
        brightness(0)
        invert(1);

}

.title-divider{

    width:220px;

    height:3px;

    margin:20px 0;

    background:
        linear-gradient(
            90deg,
            #00d4ff,
            transparent
        );

}

.main-logo{

    width:220px;

    height:auto;

    display:block;

    margin-bottom:20px;

    filter:
        drop-shadow(
            0 0 25px rgba(0,212,255,.35)
        );
}

.main-logo{

    width:120px;

    height:auto;

    margin-bottom:20px;

    filter:
        drop-shadow(
            0 0 20px rgba(0,212,255,.35)
        );

}