@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

body{
    background:#f3f5f9;
    min-height:100vh;
    overflow-y:auto;
}

.main-container{
    width:100%;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    padding:40px 40px 40px 100px;
}
/* =========================================
   LEFT PANEL
========================================= */

.governance-panel{
    width:1000px;
    height:720px;

    background:
        linear-gradient(
            180deg,
            #fbfcff 0%,
            #f8fbf9 100%
        );

    border:1px solid #edf1f5;

    border-radius:20px 0 0 20px;

    padding:70px;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;
}

.governance-content{
    width:100%;
}

.mini-logo{
    font-size:10px;
    font-weight:700;
    color:#c0cad9;
    margin-bottom:36px;
}

.governance-content h1{
    font-size:34px;
    line-height:1;

    color:#0f172a;

    font-weight:700;

    margin-bottom:24px;
}

.governance-content p{
    font-size:13px;
    line-height:1.8;
    color:#64748b;
}

/* =========================================
   RIGHT SECTION
========================================= */

.auth-section{
    width:620px;
}

.auth-card{
    width:72%;
    min-height:720px;

    background:#ffffff;

    border:1px solid #edf1f5;
    border-left:none;

    border-radius:0 20px 20px 0;

    padding:34px;
}

/* =========================================
   HEADINGS
========================================= */

.auth-card h2{
    text-align:center;

    font-size:20px;
    font-weight:700;

    color:#0f172a;

    margin-bottom:8px;
}


.subtitle{
    text-align:center;

    font-size:11px;
    color:#94a3b8;

    margin-bottom:28px;
}

/* =========================================
   LABELS
========================================= */

label{
    display:block;

    font-size:12px;
    font-weight:600;

    color:#334155;

    margin-bottom:8px;
}

/* =========================================
   INPUTS
========================================= */

.input-group{
    position:relative;
    margin-bottom:18px;
}

.input-group input{
    width:100%;
    height:42px;

    border:1px solid #dbe2ea;
    border-radius:8px;

    background:#fafbfd;

    padding:0 42px;

    font-size:12px;
    color:#334155;

    transition:0.2s ease;
}

.input-group input:focus{
    outline:none;

    background:#ffffff;

    border-color:#cbd5e1;
}

.input-group span{
    position:absolute;

    top:50%;
    transform:translateY(-50%);

    font-size:18px;
    color:#94a3b8;
}

.input-group span:first-child{
    left:12px;
}

.toggle-password{
    right:12px;
    cursor:pointer;
}

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

.primary-btn{
    width:100%;
    height:42px;

    border:none;
    border-radius:8px;

    background:#08122f;

    color:#ffffff;

    font-size:12px;
    font-weight:600;

    cursor:pointer;

    transition:0.2s ease;

    margin-top:10px;
}

.primary-btn:hover{
    background:#10204d;
}

.auth-footer-links{
    margin-top:28px;
    text-align:center;
}

.help-text{
    font-size:10px;
    color:#b6c0d1;
}

.signin-text{
    margin-top:10px;
    font-size:11px;
    color:#94a3b8;
}

.signin-text a{
    color:#0f172a;
    text-decoration:none;
    font-weight:600;
}

.signin-text a:hover{
    text-decoration:underline;
}

@media(max-width:1100px){

    body{
        overflow:auto;
    }

    .main-container{
        flex-direction:column;
        padding:20px;
    }

    .governance-panel{
        width:100%;
        height:auto;

        border-radius:20px 20px 0 0;
    }

    .auth-section{
        width:100%;
    }

    .auth-card{
        width:100%;

        border-left:1px solid #edf1f5;
        border-top:none;

        border-radius:0 0 20px 20px;
    }
}

.redirect-text{
    margin-top:18px;

    text-align:center;

    font-size:12px;

    color:#94a3b8;
}

.redirect-text a{
    color:#0f172a;
    text-decoration:none;
    font-weight:600;
}

.redirect-text a:hover{
    text-decoration:underline;
}