/* =========================================
   GLOBAL
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:
    linear-gradient(
        135deg,
        #020817,
        #07152f,
        #0f172a
    );
    overflow-x:hidden;
    min-height:100vh;
}

/* =========================================
   LEFT SIDE
========================================= */

.login-left{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:70px;
    position:relative;
    overflow:hidden;
}

.login-left::before{
    content:'';
    position:absolute;
    width:550px;
    height:550px;
    background:
    radial-gradient(
        circle,
        rgba(212,164,82,0.18),
        transparent 70%
    );
    top:-120px;
    left:-120px;
}

.login-left::after{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    background:
    radial-gradient(
        circle,
        rgba(255,255,255,0.06),
        transparent 70%
    );
    bottom:-120px;
    right:-120px;
}

.left-content{
    position:relative;
    z-index:2;
    max-width:580px;
}

.brand-logo{
    width:100%;
    max-width:280px;
    height:auto;
    object-fit:contain;
    margin-bottom:40px;
    filter:
    drop-shadow(
        0 20px 40px rgba(0,0,0,0.4)
    );
}

.left-content h1{
    font-size:64px;
    font-weight:800;
    line-height:1.1;
    color:#fff;
    margin-bottom:24px;
}

.left-content h1 span{
    color:#d4a452;
}

.left-content p{
    font-size:18px;
    line-height:1.9;
    color:rgba(255,255,255,0.82);
    max-width:520px;
}

/* =========================================
   RIGHT SIDE
========================================= */

.login-right{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:50px 20px;
}

.login-card{
    width:100%;
    max-width:540px;
    background:
    rgba(255,255,255,0.96);
    backdrop-filter:blur(18px);
    border-radius:34px;
    padding:45px;
    border:
    1px solid rgba(255,255,255,0.3);
    box-shadow:
    0 25px 60px rgba(0,0,0,0.28);
}

.card-logo{
    width:100%;
    max-width:220px;
    height:auto;
    object-fit:contain;
    display:block;
    margin:0 auto 20px;
}

.login-title{
    font-size:36px;
    font-weight:800;
    color:#081120;
    margin-bottom:12px;
    text-align:center;
}

.login-subtitle{
    color:#64748b;
    margin-bottom:35px;
    line-height:1.8;
    text-align:center;
}

/* =========================================
   FORM
========================================= */

.form-control{
    height:60px;
    border-radius:18px;
    border:1px solid #dbe4f0;
    padding-left:18px;
    font-size:15px;
    background:#fff;
    transition:all 0.3s ease;
}

.form-control:focus{
    border-color:#d4a452;
    box-shadow:
    0 0 0 4px rgba(212,164,82,0.14);
}

/* =========================================
   PASSWORD
========================================= */

.password-wrapper{
    position:relative;
}

.toggle-password{
    position:absolute;
    right:18px;
    top:50%;
    transform:translateY(-50%);
    cursor:pointer;
    color:#64748b;
    font-size:18px;
}

/* =========================================
   BUTTON
========================================= */

.login-btn{
    width:100%;
    height:60px;
    border:none;
    border-radius:18px;
    background:
    linear-gradient(
        135deg,
        #d4a452,
        #b8862d
    );
    color:#fff;
    font-size:16px;
    font-weight:700;
    transition:all 0.3s ease;
    margin-top:10px;
}

.login-btn:hover{
    transform:translateY(-2px);
    box-shadow:
    0 18px 35px rgba(212,164,82,0.35);
}

/* =========================================
   LINKS
========================================= */

.extra-links{
    display:flex;
    justify-content:flex-end;
    margin-top:18px;
}

.extra-links a{
    color:#b8862d;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
}

.register-text{
    text-align:center;
    margin-top:28px;
    color:#64748b;
}

.register-text a{
    color:#b8862d;
    text-decoration:none;
    font-weight:700;
}

/* =========================================
   ALERT
========================================= */

.alert{
    border:none;
    border-radius:16px;
    padding:16px 18px;
    font-size:14px;
    margin-bottom:24px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .login-left{
        display:none;
    }

    .login-right{
        padding:35px 15px;
    }

    .login-card{
        padding:35px 25px;
    }
}

@media(max-width:576px){

    .login-card{
        border-radius:28px;
    }

    .login-title{
        font-size:30px;
    }

    .form-control{
        height:56px;
    }

    .login-btn{
        height:56px;
    }

    .card-logo{
        max-width:180px;
    }
}