*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    overflow:hidden;
}

body{
    width:100%;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(135deg,#0f172a,#1e293b,#334155);
    overflow:hidden;
    position:relative;
    padding:15px;
}

body::before,
body::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    filter:blur(90px);
    opacity:.4;
    animation:float 8s infinite alternate;
}

body::before{
    background:#38bdf8;
    top:-100px;
    left:-100px;
}

body::after{
    background:#8b5cf6;
    bottom:-100px;
    right:-100px;
}

@keyframes float{

    from{
        transform:translateY(0px);
    }

    to{
        transform:translateY(30px);
    }

}

.container{
    width:100%;
    max-width:380px;
    position:relative;
    z-index:10;
}

.card{
    width:100%;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:28px;
    padding:35px 25px;
    box-shadow:0 10px 40px rgba(0,0,0,.3);
    animation:show .6s ease;
}

@keyframes show{

    from{
        opacity:0;
        transform:translateY(20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.monkey{
    width:130px;
    height:130px;
    margin:0 auto 15px;
    position:relative;
}

.head{
    width:95px;
    height:95px;
    background:#8b5a2b;
    border-radius:50%;
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    top:10px;
}

.ear{
    width:30px;
    height:30px;
    background:#8b5a2b;
    border-radius:50%;
    position:absolute;
    top:10px;
}

.left-ear{
    left:-10px;
}

.right-ear{
    right:-10px;
}

.face{
    width:65px;
    height:65px;
    background:#d6a679;
    border-radius:50%;
    position:absolute;
    top:18px;
    left:50%;
    transform:translateX(-50%);
}

.eye{
    width:8px;
    height:8px;
    background:#000;
    border-radius:50%;
    position:absolute;
    top:22px;
}

.left-eye{
    left:18px;
}

.right-eye{
    right:18px;
}

.mouth{
    width:20px;
    height:10px;
    border-bottom:3px solid #000;
    border-radius:50%;
    position:absolute;
    bottom:15px;
    left:50%;
    transform:translateX(-50%);
}

.hand{
    width:32px;
    height:14px;
    background:#8b5a2b;
    border-radius:20px;
    position:absolute;
    top:62px;
    transition:.4s;
    z-index:10;
}

.hand.left{
    left:8px;
}

.hand.right{
    right:8px;
}

.cover .hand.left{
    transform:translate(20px,-16px) rotate(40deg);
}

.cover .hand.right{
    transform:translate(-20px,-16px) rotate(-40deg);
}


.title{
    color:#fff;
    text-align:center;
    font-size:26px;
    font-weight:600;
    margin-bottom:5px;
}

.subtitle{
    color:#cbd5e1;
    text-align:center;
    font-size:13px;
    margin-bottom:25px;
}


.input-group{
    margin-bottom:15px;
}

.input-group input{
    width:100%;
    padding:13px 15px;
    border:none;
    outline:none;
    border-radius:14px;
    background:rgba(255,255,255,0.1);
    color:#fff;
    font-size:14px;
    transition:.3s;
}

.input-group input::placeholder{
    color:#cbd5e1;
}

.input-group input:focus{
    background:rgba(255,255,255,0.15);
    box-shadow:0 0 15px rgba(56,189,248,.4);
}


.btn{
    width:100%;
    padding:13px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,#38bdf8,#8b5cf6);
    color:#fff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(0,0,0,.3);
}

.error{
    color:#f87171;
    text-align:center;
    margin-top:15px;
    display:none;
    font-size:14px;
}

.welcome{
    display:none;
    text-align:center;
    color:#fff;
}

.welcome h1{
    font-size:30px;
    margin-bottom:10px;
}

.welcome p{
    color:#cbd5e1;
    margin-bottom:25px;
}

.logout{
     background:linear-gradient(135deg,#38bdf8,#8b5cf6);
}


@media(max-width:480px){

    .card{
        padding:30px 20px;
    }

    .title{
        font-size:22px;
    }

    .subtitle{
        font-size:12px;
    }

}