*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

html,body{
    width:100%;
    height:100%;
    overflow:hidden;
    background:#0b1120;
}

/* DESKTOP BLOCK */

.desktop-view{
    display:none;
}

@media (min-width:700px){

    .mobile-ui{
        display:none !important;
    }

    .desktop-view{
        width:100%;
        height:100vh;
        display:flex;
        align-items:center;
        justify-content:center;
        background:#0b1120;
        color:#fff;
        font-size:24px;
        font-weight:bold;
    }

}

/* MOBILE UI */

.mobile-ui{
    width:100%;
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:14px;
}

.login-card{
    width:100%;
    max-width:420px;
    height:96vh;
    background:linear-gradient(180deg,#172033,#0f172a);
    border-radius:30px;
    padding:22px 18px;
    position:relative;
    overflow:hidden;
    box-shadow:0 0 30px rgba(0,0,0,.45);
}

.login-card::before{
    content:'';
    position:absolute;
    width:220px;
    height:220px;
    background:#2563eb;
    border-radius:50%;
    filter:blur(100px);
    top:-70px;
    right:-60px;
    opacity:.45;
}

.content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    flex-direction:column;
}

/* TOP BRAND */

.top-brand{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:25px;
}

.logo{
    width:50px;
    height:50px;
    border-radius:16px;
    background:linear-gradient(135deg,#2563eb,#7c3aed);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
    font-weight:bold;
}

.brand-text{
    display:flex;
    flex-direction:column;
}

.brand-name{
    color:#fff;
    font-size:25px;
    font-weight:900;
    letter-spacing:1px;
}

.sub{
    color:#94a3b8;
    font-size:12px;
    margin-top:2px;
}

/* LOGIN TITLE */

.login-title{
    color:#fff;
    font-size:28px;
    font-weight:800;
    margin-top:30px;
    margin-bottom:6px;
}

.login-sub{
    color:#94a3b8;
    font-size:13px;
    margin-bottom:30px;
}

/* FORM */

.group{
    margin-bottom:16px;
}

label{
    display:block;
    color:#cbd5e1;
    font-size:12px;
    margin-bottom:6px;
    padding-left:2px;
}

.input{
    width:100%;
    height:48px;
    border:none;
    outline:none;
    border-radius:14px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    padding:0 14px;
    color:#fff;
    font-size:14px;
}

.input::placeholder{
    color:#64748b;
}

.input:focus{
    border-color:#3b82f6;
    box-shadow:0 0 0 3px rgba(59,130,246,.15);
}

/* PASSWORD SHOW HIDE */

.pass-box{
    position:relative;
}

.pass-box .input{
    padding-right:70px;
}

.toggle-pass{
    position:absolute;
    right:14px;
    top:50%;
    transform:translateY(-50%);
    color:#60a5fa;
    font-size:12px;
    font-weight:bold;
    cursor:pointer;
    user-select:none;
}

/* FORGOT */

.forgot{
    text-align:right;
    margin-top:-5px;
    margin-bottom:24px;
}

.forgot a{
    color:#60a5fa;
    text-decoration:none;
    font-size:12px;
}

/* BUTTON */

.btn{
    width:100%;
    height:50px;
    border:none;
    border-radius:16px;
    background:linear-gradient(135deg,#2563eb,#7c3aed);
    color:#fff;
    font-size:15px;
    font-weight:bold;
    letter-spacing:.5px;
    margin-top:auto;
}

.btn:active{
    transform:scale(.98);
}

/* BOTTOM */

.bottom{
    text-align:center;
    color:#94a3b8;
    font-size:12px;
    margin-top:18px;
}

.bottom a{
    color:#60a5fa;
    text-decoration:none;
    font-weight:bold;
}