*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

html,body{
    width:100%;
    height:100%;
    overflow:hidden;
    background:#0b1120;
}

/* STRICT 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;
        color:#fff;
        font-size:24px;
        font-weight:bold;
        background:#0b1120;
    }
}

/* MOBILE ONLY */
.note{
    color: #fff;
    opacity: 0.4;
    margin-top: 5%;
    font-size:10px;
}
.note a{ color: #fff; text-decoration: none; }
.aucgb{
    font-size: 12px;
}
.mobile-ui{
    width:100%;
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:10px;
}

.form-card{
    width:100%;
    max-width:420px;
    height:96vh;
    background:linear-gradient(180deg,#172033,#0f172a);
    border-radius:28px;
    padding:18px 16px;
    position:relative;
    overflow:hidden;
    box-shadow:0 0 25px rgba(0,0,0,0.45);
}

.form-card::before{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    background:#2563eb;
    border-radius:50%;
    filter:blur(90px);
    top:-70px;
    right:-50px;
    opacity:.45;
}
.bottom{
    text-align:center;
    color:#94a3b8;
    font-size:16px;
    margin-top:10px;
}

.bottom a{
    color:#60a5fa;
    text-decoration:none;
    font-weight:bold;
}
.content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    flex-direction:column;
}

.logo{
    width:48px;
    height:48px;
    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;
    margin-bottom:12px;
}
/* ADD THIS CSS */

.top-brand{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:16px;
}

.brand-text{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.brand-name{
    color:#fff;
    font-size:24px;
    font-weight:900;
    letter-spacing:1px;
    line-height:1;
}
.title{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:3px;
}

.sub{
    color:#94a3b8;
    font-size:12px;
    margin-bottom:16px;
}

/* SMALL FIELDS */

.group{
    margin-bottom:19px;
}

label{
    color:#cbd5e1;
    font-size:16px;
    display:block;
    margin-bottom:5px;
    padding-left:2px;
}
label span{ font-size: 10px; }
.input{
    width:100%;
    height:45px;
    border:none;
    outline:none;
    border-radius:5px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    padding:0 14px;
    color:#fff;
    font-size:13px;
}

.input::placeholder{
    color:#64748b;
    font-size: 10px;
}

.input:focus{
    border-color:#3b82f6;
    box-shadow:0 0 0 3px rgba(59,130,246,0.15);
}

.btn{
    
    width:100%;
    height: auto;
    border:none;
    border-radius:10px;
    background:linear-gradient(135deg,#2563eb,#7c3aed);
    color:#fff;
    font-size:1.2em;
    padding: 20px 0;
    font-weight:bold;
    letter-spacing:.5px;
}

.btn:active{
    transform:scale(.98);
}
