/* ======================================
LAYOUT
====================================== */

body {

    margin: 0;
    font-family: "Segoe UI", system-ui, sans-serif;
    background: #F4F7FB;

}

.login-wrapper {

    display: flex;
    height: 100vh;

}


/* ======================================
LEFT PANEL
====================================== */

.login-left {

    width: 55%;

    background: linear-gradient(
        135deg,
        #0B3C5D,
        #328CC1
    );

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

}

.brand-section {

    max-width: 420px;

}

.brand-logo {

    height: 70px;
    margin-bottom: 20px;

}

.brand-section h2 {

    font-weight: 600;

}

.brand-section p {

    opacity: 0.9;

}


/* ======================================
RIGHT PANEL
====================================== */

.login-right {

    width: 45%;

    display: flex;
    align-items: center;
    justify-content: center;

}


/* ======================================
LOGIN CARD
====================================== */

.login-card {

    width: 380px;

    background: white;

    padding: 35px;

    border-radius: 14px;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.12);

}

.login-title {

    margin-bottom: 25px;

}


/* ======================================
BUTTON
====================================== */

.login-btn {

    background: #0B3C5D;
    color: white;
    border: none;

}

.login-btn:hover {

    background: #06283D;

}


/* ======================================
INPUT ICON
====================================== */

.input-group-text {

    background: #E1E8F0;

}


/* ======================================
MOBILE
====================================== */

@media (max-width:768px) {

.login-left {

    display: none;

}

.login-right {

    width: 100%;

}

}