body{
    margin:0;
    padding:0;
    overflow-x:hidden;
    background:#f8fafc;
    font-family:'Inter',sans-serif;
}

/* WRAPPER */
.auth-wrapper{
    min-height:100vh;
    display:flex;
    position:relative;
    z-index:2;
}

/* LEFT */
.auth-left{
    width:50%;
    background:
    linear-gradient(
        135deg,
        #0b132b,
        #1c2541
    );
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:80px;
    position:relative;
    overflow:hidden;
}

.auth-left::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    top:-150px;
    right:-150px;
}

.auth-left-content{
    position:relative;
    z-index:2;
    max-width:520px;
}

.brand-logo{
    font-size:48px;
    font-weight:900;
    color:#ffd166;
    margin-bottom:24px;
}

.auth-left h1{
    font-size:64px;
    font-weight:900;
    line-height:1.1;
    margin-bottom:24px;
}

.auth-left p{
    font-size:18px;
    line-height:1.9;
    color:rgba(255,255,255,.8);
    margin-bottom:40px;
}

/* FEATURES */
.auth-feature-list{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.auth-feature-item{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.1);
    padding:18px 22px;
    border-radius:18px;
    backdrop-filter:blur(12px);
}

/* RIGHT */
.auth-right{
    width:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px;
    position:relative;
}

.auth-container{
    width:100%;
    max-width:500px;
}

/* CARD */
.auth-card{
    border:none !important;
    border-radius:32px !important;
    background:rgba(255,255,255,.75) !important;
    backdrop-filter:blur(20px);
    box-shadow:
    0 20px 60px rgba(0,0,0,.12);
}

/* TITLE */
.auth-title{
    font-size:36px;
    font-weight:800;
    color:#0b132b;
}

.auth-subtitle{
    color:#64748b;
}

/* INPUT */
.form-control{
    border:none !important;
    background:#f1f5f9 !important;
    border-radius:16px !important;
    padding:14px 18px !important;
    min-height:54px;
}

/* BUTTON */
.btn-auth{
    background:
    linear-gradient(
        135deg,
        #d90429,
        #ef233c
    ) !important;

    border:none !important;

    border-radius:16px !important;

    padding:14px !important;

    font-weight:700 !important;

    font-size:16px;
}

/* BACKGROUND */
.auth-bg{
    position:fixed;
    inset:0;
    background:
    radial-gradient(
        circle at top left,
        rgba(217,4,41,.15),
        transparent 30%
    ),
    radial-gradient(
        circle at bottom right,
        rgba(255,209,102,.2),
        transparent 30%
    );
    z-index:0;
}

/* GLOW */
.auth-glow{
    position:fixed;
    border-radius:999px;
    filter:blur(100px);
    z-index:1;
}

.auth-glow-1{
    width:300px;
    height:300px;
    background:#d90429;
    top:-100px;
    left:-100px;
}

.auth-glow-2{
    width:300px;
    height:300px;
    background:#ffd166;
    bottom:-100px;
    right:-100px;
}

/* MOBILE */
@media(max-width:991px){

    .auth-left{
        display:none;
    }

    .auth-right{
        width:100%;
        padding:20px;
    }

    .auth-container{
        max-width:100%;
    }

}