.login-page{
    min-height:100vh; margin:0;
    background:#0062ad;
    display:flex; align-items:center; justify-content:center;
    padding:24px;
    font-family:'JetBrains Mono', ui-monospace, monospace;
}

.login-card{
    width:460px; max-width:100%;
    background:#fbf0dc;
    border:4px solid #000;
    box-shadow:12px 12px 0 #000;
    display:flex; flex-direction:column;
}

/* === Monster header === */
.login-monster{
    position:relative;
    background:#0062ad;
    height:260px;
    border-bottom:4px solid #000;
    display:flex; align-items:center; justify-content:center;
}
.login-eyes{ display:flex; gap:12px; }
.eye{
    width:132px; height:132px; border-radius:50%;
    background:#fbf0dc;
    border:4px solid #000;
    box-shadow:6px 6px 0 #000;
    position:relative; overflow:hidden;
}
.pupil{
    position:absolute; left:50%; top:50%;
    width:56px; height:56px; border-radius:50%;
    background:#000;
    transform:translate(-50%,-50%);
    transition:height .18s, width .12s;
}
.pupil.shut{ height:6px; }
.pupil.shut .glint{ display:none; }
.glint{
    position:absolute; width:16px; height:16px;
    background:#fff; border-radius:50%;
    top:8px; right:8px;
}

.login-badge-top{
    position:absolute; top:14px; left:14px;
    background:#fbf0dc; border:3px solid #000;
    padding:4px 10px; font-size:11px; font-weight:800;
    letter-spacing:1px; text-transform:uppercase; color:#000;
}
.login-badge-bot{
    position:absolute; bottom:-14px; right:20px;
    background:#fde047; border:3px solid #000;
    box-shadow:3px 3px 0 #000;
    padding:4px 10px; font-size:10px; font-weight:800;
    letter-spacing:1px; text-transform:uppercase; color:#000;
}

/* === Form body === */
.login-body{ padding:28px; display:flex; flex-direction:column; gap:14px; }
.login-body h1{ margin:0; font-size:24px; font-weight:900; letter-spacing:-.5px; color:#000; }
.login-sub{ margin:4px 0 0; font-size:12px; font-weight:600; color:#000; opacity:.7; }

.login-label{
    font-size:11px; font-weight:800; letter-spacing:.5px;
    text-transform:uppercase; color:#000; margin-bottom:-8px;
}
.login-input{
    background:#fff; border:3px solid #000;
    box-shadow:4px 4px 0 #000;
    padding:10px 12px; font-size:14px;
    font-family:inherit; font-weight:600; color:#000;
    outline:none; width:100%; box-sizing:border-box;
}
.login-input:focus{ transform:translate(-1px,-1px); box-shadow:5px 5px 0 #000; }

.login-pass{ position:relative; }
.login-pass .login-input{ padding-right:64px; }
.login-pass-btn{
    position:absolute; right:6px; top:6px; bottom:6px;
    width:50px; background:#000; color:#fbf0dc;
    border:none; cursor:pointer;
    font-size:10px; font-weight:800; letter-spacing:.5px;
    font-family:inherit;
}

.login-row{ display:flex; justify-content:space-between; align-items:center; }
.login-check{ font-size:12px; font-weight:700; color:#000; display:flex; align-items:center; gap:6px; cursor:pointer; }
.login-check input{ accent-color:#000; width:16px; height:16px; }
.login-link{ font-size:12px; font-weight:700; color:#000; text-decoration:underline; }

.login-alert{
    background:#fecaca; border:3px solid #000;
    padding:8px 12px; font-size:12px; font-weight:700; color:#000;
}

.login-submit{
    background:#0062ad; color:#fff;
    border:3px solid #000; box-shadow:5px 5px 0 #000;
    padding:12px 16px; font-size:14px; font-weight:900;
    letter-spacing:1px; text-transform:uppercase;
    cursor:pointer; font-family:inherit;
    transition:transform .1s, box-shadow .1s;
}
.login-submit:hover{ transform:translate(-1px,-1px); box-shadow:6px 6px 0 #000; }
.login-submit:active{ transform:translate(3px,3px); box-shadow:2px 2px 0 #000; }

.login-foot{ text-align:center; font-size:12px; font-weight:600; color:#000; opacity:.8; }