* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.itlink-login-wrapper {

    min-height: 100vh;
    display: flex;
    font-family: Arial, Helvetica, sans-serif;

}


/* LEFT SECTION */

.itlink-login-left {

    width: 55%;
    background: #2563EB;
    color: #ffffff;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 60px;

}


.brand h1 {

    font-size: 58px;
    margin-bottom: 20px;
    font-weight: 700;

}


.brand h2 {

    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 500;

}


.brand p {

    font-size: 18px;
    line-height: 1.8;
    max-width: 500px;

}



/* RIGHT SECTION */

.itlink-login-right {

    width: 45%;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #ffffff;

}



/* LOGIN CARD */

.login-card {

    width: 420px;

    background: #ffffff;

    padding: 45px;

    border-radius: 18px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);

}


.login-card h2 {

    margin-bottom: 10px;
    font-size: 28px;

}


.login-card p {

    color: #666;

    margin-bottom: 30px;

}



/* INPUTS */

.login-card input {

    width: 100%;

    padding: 15px;

    margin-bottom: 18px;

    border-radius: 10px;

    border: 1px solid #ddd;

    outline: none;

    font-size: 15px;

}


.login-card input:focus {

    border-color: #2563EB;

}



/* BUTTON */

.login-card button {

    width: 100%;

    padding: 15px;

    background: #2563EB;

    color: #ffffff;

    border: none;

    border-radius: 10px;

    cursor: pointer;

    font-size: 16px;

    transition: 0.3s;

}


.login-card button:hover {

    background: #1d4ed8;

}



/* RESPONSIVE */

@media(max-width:900px){


    .itlink-login-wrapper{

        flex-direction:column;

    }


    .itlink-login-left,
    .itlink-login-right{

        width:100%;

    }


    .itlink-login-left{

        padding:40px;

    }


    .login-card{

        width:90%;

    }

}
.login-logo {

    text-align:center;
    margin-bottom:25px;

}


.login-logo img {

    width:120px;
    height:auto;

}