*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{

    min-height:100vh;

    background:#f4f6fb;

    display:flex;
}

.login-container{

    width:100%;

    min-height:100vh;

    display:flex;
}

/* LEFT */

.login-banner{

    flex:1;

    background:linear-gradient(
        135deg,
        #0a4d9b,
        #1565c0
    );

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:60px;
}

.banner-content{

    max-width:500px;
}

.logo{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:30px;
}

.logo i{

    font-size:50px;
}

.logo h1{

    font-size:40px;
}

.banner-content h2{

    font-size:32px;

    margin-bottom:20px;

    line-height:1.4;
}

.banner-content p{

    font-size:17px;

    line-height:1.8;

    opacity:.9;

    margin-bottom:40px;
}

.features{

    display:grid;

    gap:20px;
}

.features div{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:17px;
}

.features i{

    width:35px;
}

/* RIGHT */

.login-form-area{

    width:500px;

    background:white;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:50px;
}

.login-form{

    width:100%;
}

.login-form h2{

    font-size:32px;

    margin-bottom:10px;

    color:#222;
}

.login-form p{

    color:#777;

    margin-bottom:35px;
}

.form-group{

    margin-bottom:20px;
}

.form-group label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

    color:#444;
}

.input-group{

    position:relative;
}

.input-group i{

    position:absolute;

    left:15px;

    top:50%;

    transform:translateY(-50%);

    color:#999;
}

.input-group input{

    width:100%;

    height:50px;

    border:1px solid #d9d9d9;

    border-radius:10px;

    padding-left:45px;

    font-size:15px;

    transition:.3s;
}

.input-group input:focus{

    border-color:#0a4d9b;

    outline:none;
}

.form-options{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin:20px 0;
}

.form-options a{

    color:#0a4d9b;

    text-decoration:none;
}

.btn-login{

    width:100%;

    height:52px;

    border:none;

    border-radius:10px;

    background:#0a4d9b;

    color:white;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;
}

.btn-login:hover{

    background:#1565c0;
}

.copyright{

    text-align:center;

    margin-top:25px;

    color:#888;

    font-size:14px;
}

/* RESPONSIVE */

@media(max-width:992px){

    .login-banner{
        display:none;
    }

    .login-form-area{
        width:100%;
    }
}