*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Inter', sans-serif;
    background: #eef2f9;
    height: 100vh;
    overflow: hidden;
    padding: 16px;
}

.login-container{
    width: 100%;
    height: calc(100vh - 32px);

    display: flex;

    border-radius: 28px;

    overflow: hidden;

    background: white;

    box-shadow: 0 10px 40px rgba(15,23,42,0.08);
}

/* LEFT SIDE */

.login-left{
    width: 44%;

    background:
        linear-gradient(rgba(2,16,54,0.9), rgba(2,16,54,0.94)),
        url('images/building-bg.jpg') center/cover;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 50px;

    color: white;
}

.login-left::before{
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);

    background-size: 24px 24px;
}

.left-content{
    position: relative;
    z-index: 2;

    max-width: 420px;
}

.logo-box{
    width: 78px;
    height: 78px;

    border-radius: 22px;

    background: rgb(255, 255, 255);

    border: 1px solid rgba(255,255,255,0.12);

    backdrop-filter: blur(10px);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;
}

.logo-box img{
    width: 56px;
    border-radius: 10px;
}

.portal-badge{
    display: inline-block;

    padding: 9px 16px;

    border-radius: 50px;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.12);

    font-size: 11px;

    letter-spacing: 2px;

    margin-bottom: 24px;
}

.left-content h1{
    font-family: 'Playfair Display', serif;

    font-size: 58px;

    line-height: 1.05;

    margin-bottom: 18px;
}

.description{
    font-size: 15px;

    line-height: 1.8;

    color: rgba(255,255,255,0.82);
}

/* RIGHT SIDE */

.login-right{
    width: 56%;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px 40px;

    background: #ffffff;
}

.login-card{
    width: 100%;
    max-width: 460px;
}

.login-card h2{
    font-size: 45px;

    line-height: 1;

    font-family: 'Playfair Display', serif;

    color: #08142d;

    margin-bottom: 12px;

    text-align: center;
}

.subtitle{
    font-size: 15px;

    text-align: center;

    color: #64748b;

    line-height: 1.6;

    margin-bottom: 24px;

    max-width: 420px;
}

.input-group-custom{
    margin-bottom: 14px;
}

.input-group-custom label{
    display: block;

    margin-bottom: 8px;

    font-size: 14px;

    font-weight: 600;

    color: #0f172a;
}

.input-box{
    height: 52px;

    border: 1px solid #dbe2ea;

    border-radius: 15px;

    display: flex;
    align-items: center;

    padding: 0 15px;

    transition: 0.3s ease;

    background: white;
}

.input-box:focus-within{
    border-color: #1d4ed8;

    box-shadow: 0 0 0 4px rgba(37,99,235,0.08);
}

.input-box i{
    font-size: 16px;

    color: #64748b;

    margin-right: 12px;
}

.input-box input{
    width: 100%;

    border: none;

    outline: none;

    background: transparent;

    font-size: 15px;

    color: #0f172a;
}

.input-box input::placeholder{
    color: #94a3b8;
}

.password-box button{
    border: none;
    background: transparent;
    cursor: pointer;
}

.password-box button i{
    margin-right: 0;
}

.forgot-password{
    text-align: right;

    margin-top: 6px;

    margin-bottom: 18px;
}

.forgot-password a{
    text-decoration: none;

    color: #163c9a;

    font-size: 14px;

    font-weight: 500;
}

.login-btn{
    width: 100%;

    height: 54px;

    border: none;

    border-radius: 15px;

    background: linear-gradient(135deg, #08142d, #163c9a);

    color: white;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    margin-top: 8px;

    transition: 0.3s ease;
}

.login-btn:hover{
    transform: translateY(-2px);

    box-shadow: 0 12px 25px rgba(29,78,216,0.22);
}

.signup-link{
    margin-top: 18px;

    text-align: center;

    color: #64748b;

    font-size: 14px;
}

.signup-link a{
    color: #163c9a;

    text-decoration: none;

    font-weight: 600;
}

/* RESPONSIVE */

@media(max-width: 992px){

    body{
        padding: 0;
    }

    .login-container{
        height: 100vh;
        border-radius: 0;
    }

    .login-left{
        display: none;
    }

    .login-right{
        width: 100%;
        padding: 24px;
    }

    .login-card{
        max-width: 100%;
    }

    .login-card h2{
        font-size: 40px;
    }
}