*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{

    background:#f1f5f9;

    height:100vh;

    overflow:hidden;

    padding:10px;
}



/* =========================
LOGIN CONTAINER
========================= */

.login-container{

    width:100%;

    max-width:1100px;

    height:96vh;

    margin:auto;

    background:white;

    border-radius:24px;

    overflow:hidden;

    display:grid;

    grid-template-columns:
    360px 1fr;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.08);
}



/* =========================
LEFT SIDE
========================= */

.login-left{

    background:
    linear-gradient(
    135deg,
    #081224,
    #0f172a
    );

    color:white;

    padding:30px;

    display:flex;

    flex-direction:column;

    justify-content:center;
}



/* =========================
LOGO
========================= */

.logo{

    font-size:34px;

    font-weight:700;

    line-height:1.3;

    margin-bottom:18px;
}

.logo span{

    color:#d4af37;
}



/* =========================
DESCRIPTION
========================= */

.login-left p{

    color:#cbd5e1;

    margin-bottom:30px;

    line-height:1.7;

    font-size:14px;
}



/* =========================
FEATURES
========================= */

.features{

    display:flex;

    flex-direction:column;

    gap:12px;
}

.feature{

    display:flex;

    align-items:center;

    gap:12px;

    padding:12px;

    border-radius:12px;

    background:
    rgba(255,255,255,0.05);

    font-size:14px;
}

.feature i{

    color:#d4af37;
}



/* =========================
RIGHT SIDE
========================= */

.login-right{

    padding:50px;

    display:flex;

    flex-direction:column;

    justify-content:center;
}



/* =========================
HEADINGS
========================= */

.login-header h1{

    font-size:36px;

    margin-bottom:8px;

    color:#081224;
}

.login-header p{

    color:#64748b;

    margin-bottom:35px;
}



/* =========================
ALERT
========================= */

.alert{

    background:#fee2e2;

    color:#991b1b;

    padding:14px;

    border-radius:12px;

    margin-bottom:20px;

    font-size:14px;

    font-weight:600;
}



/* =========================
FORM
========================= */

form{

    display:flex;

    flex-direction:column;

    gap:18px;
}



/* =========================
FORM GROUP
========================= */

.form-group label{

    display:block;

    margin-bottom:8px;

    font-size:14px;

    font-weight:600;

    color:#0f172a;
}

.form-group input{

    width:100%;

    padding:14px;

    border:1px solid #cbd5e1;

    border-radius:12px;

    outline:none;

    font-size:14px;
}

.form-group input:focus{

    border-color:#2563eb;

    box-shadow:
    0 0 0 3px rgba(37,99,235,0.08);
}



/* =========================
BUTTON
========================= */

.btn{

    width:100%;

    padding:14px;

    border:none;

    border-radius:14px;

    background:
    linear-gradient(
    to right,
    #2563eb,
    #16a34a
    );

    color:white;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:0.3s;
}

.btn:hover{

    opacity:0.92;
}



/* =========================
REGISTER LINK
========================= */

.register-link{

    margin-top:20px;

    text-align:center;

    font-size:14px;

    color:#64748b;
}

.register-link a{

    color:#2563eb;

    text-decoration:none;

    font-weight:600;
}



/* =========================
RESPONSIVE
========================= */

@media(max-width:900px){

    body{
        overflow:auto;
    }

    .login-container{

        grid-template-columns:1fr;

        height:auto;
    }

    .login-left{
        display:none;
    }

    .login-right{

        padding:35px 22px;
    }
}


/* ===================================
PASSWORD FIELD
=================================== */

.password-box{

    position:relative;

    width:100%;
}



.password-box input{

    width:100%;

    height:55px;

    border:1px solid #cbd5e1;

    border-radius:14px;

    padding:0 50px 0 16px;

    font-size:15px;

    outline:none;

    background:#fff;

    transition:0.3s;
}



.password-box input:focus{

    border-color:#2563eb;

    box-shadow:
    0 0 0 3px rgba(37,99,235,0.1);
}



/* ===================================
SHOW PASSWORD ICON
=================================== */

.toggle-password{

    position:absolute;

    top:50%;

    right:16px;

    transform:translateY(-50%);

    cursor:pointer;

    color:#64748b;

    font-size:18px;

    z-index:5;
}



/* ===================================
FORGOT PASSWORD MOBILE FIX
=================================== */

@media(max-width:768px){

    .login-container{

        flex-direction:column;

        width:100%;

        min-height:100vh;

        border-radius:0;
    }



    .login-left{

        width:100%;

        padding:30px 20px;
    }



    .login-right{

        width:100%;

        padding:35px 22px;

        display:block;
    }



    .login-header h1{

        font-size:34px;
    }



    .form-group input,

    .password-box input{

        width:100%;

        height:52px;

        font-size:15px;
    }



    .btn{

        width:100%;

        height:52px;

        font-size:16px;
    }
}