.login-sec {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-left {
    width: 45%;
}

.login-right {
    width: 53%;
    padding: 20px;
}

.login-main {
    border-radius: 25px;
    overflow: hidden;
    background: #131345;
}

.input-icon {
    position: absolute;
    top: 16px;
    right: 17px;
    width: 25px;
}

.text-small {
    font-size: 0.9rem;
}

.login-input {
    padding: 15px 48px 15px 15px;
    background: transparent;
    border-radius: 10px;
    border: 1px solid #145599;
    font-size: 18px;
    color: white;
}

.form-control:focus {
    border: 1px solid rgb(201, 201, 201);
    background: transparent;
    color: white !important;
}

::placeholder {
    color: rgb(184, 184, 184) !important;
    opacity: 1;
    /* Firefox */
}

::-ms-input-placeholder {
    /* Edge 12-18 */
    color: rgb(184, 184, 184) !important;
}

.btn-login {
    color: #000000;
    border: 0px solid;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 10px;
    background: rgb(255 121 0);
    background: linear-gradient(180deg, rgb(255 121 0) 0%, rgb(255 216 0) 100%);
    border-radius: 10px;
}

.btn-login:hover {
    background: linear-gradient(180deg, rgb(204, 95, 0) 0%, rgb(226, 193, 1) 100%);
    color: #000000;
}

.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%;
}

.rem-chk {
    position: relative;
    top: 2px;
}

.fw-600 {
    font-weight: 600;
}

.login-heading {
    font-size: 17px;
}