body {
    font-family: 'Inter', sans-serif;
}
.login-form-container {
    background-image: url('/assets/images/background-image.png') !important;
    background-size: cover; /* Image ko poora container fill karega */
    background-position: center; /* Image ko center align karega */
    height: 100vh; /* Poore viewport height le */
    width: 100%; /* Full width le */
    background-repeat: no-repeat;
    max-width: 100% !important;
}
.p-32{
    padding: 32px;
}
.mb-20{
    margin-bottom: 20px;
}
.mb-24{
    margin-bottom: 24px;
}
.mb-6{margin-bottom: 6px}
.color-1{color: #39404F}
.color-2{color: #0C111D}
.text-color-3{color: #39404F;}
.text-color-4{color:#FFFFFF;}
.text-color-5{color:#6A7182;}
.fw-600{font-weight: 600;}
.fw-400{font-weight: 400;}
.fw-500{font-weight:500;}
.fs-24{font-size: 24px;}
.fs-16{font-size: 16px;}
.fs-14{font-size: 14px;}
.line-height-24{line-height: 24px;}
.line-height-32{line-height: 32px}
.line-height-20{line-height: 20px}
.h-44{height:44px;}

.login-logo{
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}
#loginForm{
    padding: 32px;
}
@media only screen and (max-width:500px){
    #loginForm{
        padding:15px;
    }
}