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

body{
    height:100vh;
}

.container{
    display:flex;
    height:100vh;
}

/* LEFT SIDE */

.left-panel{
    width:50%;
    background:#f3f3f3;
    display:flex;
    justify-content:center;
    align-items:center;
}

.left-panel img{
    width:65%;
}

/* RIGHT SIDE */

.right-panel{
    width:50%;
    background:linear-gradient(180deg,#1c7ed6,#1971c2);
    display:flex;
    justify-content:center;
    align-items:center;
}

/* LOGIN CARD */

.login-card{
    background:#fff;
    width:350px;
    padding:40px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.login-card h2{
    margin-bottom:5px;
}

.login-card p{
    margin-bottom:25px;
    color:#666;
}

/* INPUTS */

.input-group{
    display:flex;
    align-items:center;
    border:1px solid #ddd;
    border-radius:25px;
    padding:10px 15px;
    margin-bottom:15px;
}

.input-group input{
    border:none;
    outline:none;
    width:100%;
    margin-left:10px;
}

/* BUTTON */

button{
    width:100%;
    padding:12px;
    border:none;
    border-radius:25px;
    background:#1c7ed6;
    color:#fff;
    font-size:16px;
    cursor:pointer;
    margin-top:10px;
}

button:hover{
    background:#1864ab;
}

.forgot{
    display:block;
    margin-top:15px;
    font-size:14px;
    color:#555;
    text-decoration:none;
}