body{
    font-family: "Inter", sans-serif !important;

}
.login-sec {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-left {
    width: 45%;
    background: linear-gradient(180deg, rgb(103 0 1) 0%, rgb(160 3 4) 100%);
}

.login-right {
    width: 55%;
    background: white;
    padding: 20px;
}

.login-main {
    border-radius: 15px;
    overflow: hidden;
    min-height: 450px;
}

.input-icon {
    position: absolute;
    top: 9px;
    right: 17px;
    width: 30px;
}
.input-icon.lock{
    position: absolute;
    top: 5px;
    right: 17px;
    width: 30px;
}

.text-small {
    font-size: 0.9rem;
}

.login-input {
   padding: 15px 48px 15px 15px;
    background: #f1f6f7;
    border-radius: 9px;
    border: 1px solid #dddfe0;
    font-size: 1.3rem;
    color: rgb(29, 29, 29);
}

.form-control:focus {
    border: 1px solid rgb(201, 201, 201);
    background: transparent;
    color: rgb(29, 29, 29) !important;
    box-shadow: none !important;
}

::placeholder {
    color: #68615e !important;
    opacity: 1;
    /* Firefox */
}

::-ms-input-placeholder {
    /* Edge 12-18 */
    color: #68615e !important;
}

.btn-login {
    color: #ffffff;
    border: 0px solid;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 10px;
    background: rgb(236 0 38);
    border-radius: 8px;
}
.btn-login:hover {
    background: rgb(197, 1, 33);
    color: #ffffff;
}

.bg-login {
    background: url("../images/bg-1.jpg");
    background-size: cover;
    background-position: top center;
}

@media (max-width:992px) {
    .login-left {
        width: 100% !important;
        display: none !important;
    }

    .login-right {
        width: 100% !important;
        padding: 20px;
    }
}

.login-mid {
    width: 1%;
}

.divider-login {
    width: 1px;
    background: rgb(9 79 110);
    background: linear-gradient(180deg, rgb(19 19 69) 0%, rgb(9 79 110) 50%, rgb(19 19 69) 100%);
    height: 100%;
}



.fw-600 {
    font-weight: 600;
}

.login-heading {
    font-size: 25px;
    color: #000000 !important;
    font-weight: 500;
    margin: 20px;
}
.login-heading-top{
    font-size: 22px;
    color: #000000 !important;
    font-weight: 500;
    margin: 20px;
}
.login-main a {
    color: #539eed !important;
    text-decoration: underline;
    font-weight: 500;
}
@media (max-width:767px){
    .login-heading {
        font-size: 22px;
    }
    .login-heading-top{
        font-size: 20px;
    }
    .btn-login {
        font-size: 1.1rem !important;
    }
}