body{
    font-family:'Segoe UI',sans-serif;
    background:#f8fafc;
}

.login-banner{
    height:100vh;

    background-image:url('https://images.unsplash.com/photo-1552674605-db6ffd4facb5');
    background-size:cover;
    background-position:center;
    position:relative;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(0,0,0,.7),
        rgba(25,135,84,.6)
    );
}

.banner-content{
    position:absolute;
    left:80px;
    bottom:80px;
    color:white;
    max-width:500px;
}

.banner-content h1{
    font-size:3.5rem;
    font-weight:700;
}

.banner-content p{
    font-size:1.1rem;
    opacity:.9;
}

.login-container{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px;
}

.login-card{
    width:100%;
    max-width:450px;
    background:white;
    padding:40px;
    border-radius:25px;
    box-shadow:0 10px 35px rgba(0,0,0,.1);
}

.logo-circle{
    width:80px;
    height:80px;
    background:#198754;
    color:white;
    margin:auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
}

.form-control{
    height:50px;
}

.input-group-text{
    background:white;
}

.btn-login{
    height:52px;
    font-size:18px;
    font-weight:600;
}

.forgot-link{
    text-decoration:none;
    color:#198754;
}

.forgot-link:hover{
    color:#146c43;
}

@media(max-width:991px){

    .login-container{
        background:#f8fafc;
    }

    .login-card{
        box-shadow:none;
        border:1px solid #e5e7eb;
    }

}