#s-login {
    position: fixed;
    inset: 0;
    background-image: url('../../assets/bgs/bg_hills.png');
    background-size: cover;
    background-position: center;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9990;
}

.login-win {
    background: white;
    border-radius: 16px 16px 10px 10px;
    border: 3px solid var(--dark);
    width: 290px;
    box-shadow: 5px 7px 0 var(--dark);
    overflow: hidden;
}

.lwin-bar {
    background: var(--pink);
    height: 34px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-bottom: 3px solid var(--dark);
}

.lwin-heart {
    color: white;
    font-size: 14px;
}

.lwin-body {
    padding: 22px 18px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.lwin-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--dark);
    overflow: hidden;
}

.lwin-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lwin-tabs {
    display: flex;
    width: 100%;
    border: 2px solid var(--pink);
    border-radius: 20px;
    overflow: hidden;
}

.ltab {
    flex: 1;
    padding: 7px;
    text-align: center;
    cursor: pointer;
    font-family: 'Press Start 2P', monospace;
    font-size: 7px;
    background: white;
    color: var(--pink);
}

.ltab.on {
    background: var(--pink);
    color: white;
}

.linput {
    width: 100%;
    padding: 9px 14px;
    border-radius: 20px;
    border: 2px solid var(--pink);
    background: linear-gradient(90deg, #ffb3d1, #fff8fb);
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 700;
    outline: none;
    color: var(--dark);
}

.linput::placeholder {
    color: #e07aab;
}

.lbtn {
    background: var(--pink);
    color: white;
    border: 2px solid var(--dark);
    border-radius: 20px;
    padding: 10px 0;
    width: 100%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 3px 0 var(--dark);
    transition: transform .1s;
}

.lbtn:hover {
    transform: translateY(-2px);
}

.lerr {
    font-family: 'Press Start 2P', monospace;
    font-size: 7px;
    color: red;
    text-align: center;
    min-height: 14px;
}

.lhint {
    font-family: 'Press Start 2P', monospace;
    font-size: 6px;
    color: #aaa;
    text-align: center;
}

.lwin-foot {
    background: var(--pink);
    height: 16px;
    border-top: 3px solid var(--dark);
}
