body {
    margin: 0;
    padding: 0;
}

.login-main-bg {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(55, 80, 235, 1) 50%, rgba(197, 212, 253, 1) 50%);
}

.login-sec-left {
    background-color: #ffffff;
    width: 55%;
    display: flex;
    align-items: center;
    justify-content: center;
 height: 470px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.login-sec-right {
    background-color: #edf0f5;
    width: 45%;
    text-align: center;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.login-sec {
    display: flex;
    align-items: center;
    width: 60%;
}

.login-sec-left h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    color: #312f30;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.username-sec label,
.forgot-pwd-sec label {
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #9c9fa4;
}

.username-sec input,
.input-pwd-sec input {
    display: block;
    height: 35px;
    border-radius: 7px;
    background-color: #edf0f5;
    border: 0;
    width: calc(100% - 50px);
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: #000000;
    font-size: 14px;
    margin-top: 5px;
    padding: 0 15px;
    padding-right: 35px;
}

.forgot-pwd-sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
}

.forgot-pwd-sec a,
.sign-up a {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #374fe5;
    font-weight: 500;
    text-decoration: none;
}

.sec-check-login p,
p.sign-up {
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: #000000;
    text-align: center;
}



.sec-check-login {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}

.login-sec-right h4 {
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #000000;
    margin-top: 0;
    margin-bottom: 0;
}

.login-sec-right p {
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: #9c9fa4;
    line-height: 20px;
    margin-bottom: 30px;
    margin-top: 10px;
}

.ryt-btm-hypen {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
}

.input-pwd-sec {
    position: relative;
}

.input-pwd-sec a {
    position: absolute;
    right: 15px;
    top: 10px;
}

.input-pwd-sec a i {
    color: #96979c;
}

.login-sec-left input[type="checkbox"] {
    width: 15px;
    height: 15px;
}

.login-sec-right img {
    height: 227px;
}

.ryt-btm-hypen div:first-child {
    height: 5px;
    width: 50px;
    background: #364fe7;
}

.ryt-btm-hypen div:not(:first-child) {
    height: 5px;
    width: 50px;
    background: #adb6f9;
}

.login-sec-left>div {
    width: 70%;
}

@media (min-width:991px) and (max-width:1320px) {
    .login-sec {
        width: 90% !important;
    }
}

