* {
    box-sizing: border-box;
}

.login-sec {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 100%;
    width: 100%;
    height: 100vh;
    background-color: #fff;
}

.login-sec#login {
    max-width: 100%;
    width: 100%;
    padding:0;
}

.login-sec .login_container {
    /* max-width: 1140px; */
    width: 100%;
    padding: 0 16px;
}

.login-sec .login-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* box-shadow: 0 2px 16px #00000015; */
    /* border-radius: 12px; */
    overflow: hidden;
}

.login-sec .login-row .login-col {
    max-width: 70%;
    flex: 0 0 70%;
    width: 100%;
}

.login-sec .login-row .form-col {
    max-width: 30%;
    flex: 0 0 30%;
    width: 100%;
}

.login-sec .login-row .form-col .login-logo {
    width: 150px;
    margin: 0 auto 20px;
}

.login-sec .login-row .form-col .login-logo img {
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.login-sec .login-row .form-col h1 {
    font-size: 28px;
    color: #000;
    margin-bottom: 16px;
}

.login-sec .login-row .login-col form {
    padding: 60px 50px;
    /* background-color: #fff; */
    border-radius: 0;
    margin: 0;
    border: none;
}

.login-sec .login-row .login-col form label {
    font-size: 14px;
    line-height: 18px;
    color: #000;
    font-weight: 600;
    margin-bottom: 8px;
}

.login-sec .login-row .login-col form input[type='text'],
.login-sec .login-row .login-col form input[type='password'] {
    padding: 10px 16px;
    border-radius: 2px;
    background-color: #eee;
    color: #000;
    font-size: 16px;
}

.login-sec .login-row .login-col form .login-username {
    margin-bottom: 5px !important;
}

.login-sec .login-row .login-col form .login-submit {
    margin-top: 14px;
}

.login-sec .login-row .login-col form .login-submit input[type='submit'],
.btn-learn {
    padding: 14px 16px;
    border-radius: 2px;
    background-color: #463acb;
    text-align: center;
    border: none;
    box-shadow: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all .3s;
    float: none;
    margin-bottom: 0 !important;
    text-decoration: none;
}

.login-sec .login-row .login-col form .login-submit input[type='submit']:hover,
.btn-learn {
    background-color: #372bbc;
    color: #fff;
}

.login-sec .login-row .btn-learn {
    width: 100%;
    display: block;
    margin-top: 32px;
    color: #fff;
    background-color: #463acb;
}

.login-sec .login-row .btn-learn:hover {
    background-color: #372bbc;
}

.login-sec .login-row .login-col form .login-remember {
    margin-top: 8px;
}

.login-sec .login-row .login-col form .login-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.login-sec .login-row .login-col form .login-foot a {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    color: #000;
    opacity: .7;
    transition: all .3s;
    text-decoration: none;
    margin: 0 auto;
}

.login-sec .login-row .login-col form .login-foot input[type=checkbox] {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    color: #000;
    opacity: .7;
    transition: all .3s;
    text-decoration: none;
    width: 20px;
    height: 20px;
}

.login-sec .login-row .login-col form .login-foot input[type=checkbox]:checked {
    background-color: #372bbc;
    position: relative;
}

.login-sec .login-row .login-col form .login-foot input[type=checkbox]:checked::before {
    width: 1.3rem;
    height: unset;
    margin: -1px -1.8px !important;
    filter: brightness(0) invert(1);
}

.login-sec .login-row .login-col form .login-foot a:hover {
    opacity: 1;
}

.login-sec .login-row .login-col .login-right-box {
    padding: 50px;
    background-color: #231f20;
    height: 100vh;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-sec .login-row .login-col .login-right-box .login-right-cont {
    /* width: 100%;
    max-width: 600px; */
    padding: 50px;
    /* background-color: #fff; */
    margin: 0 auto;
    border-radius: 2px;
    z-index: 9999;
}

.login-sec .login-row .login-col .login-right-box h1,
.login-sec .login-row .login-col .login-right-box p {
    color: #000;
    text-align: left;
}

.login-sec .login-row .login-col .login-right-box h1 {
    font-size: 28px;
    line-height: 36px;
    font-weight: bold;
    margin-bottom: 0;
}

.login-sec .login-row .login-col .login-right-box p {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 0;
    margin-top: 30px;
}

.login-sec .login-row .login-col .login-right-box img {
    /* width: 200px;
    height: auto; */
    object-fit: contain;
    object-position: center;
    margin-bottom: 20px;
}
.login-header {
    display: none;
}
.login-col {
    position: relative;
}
.login-right-box:before{
    content: '';
    position: absolute;
    background: rgb(0 0 0 / 75%);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

@media (min-width:992px) and (max-width:1200px) {
    .login-sec .login_container {
        max-width: 960;
    }
    .login-header {
        display: none;
    }
}

@media (max-width:768px) {
    /* .login-col.form-col {
        order: 2;
    } */
    
    .login-sec {
        height: auto;
    }

    .login-sec .login_container {
        max-width: 720px;
    }
    .login-header {
        display: block;
    }
    /* .login-sec .login-row {
        flex-direction: column-reverse;
    } */

    .login-sec .login-row .login-col {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .login-sec .login-row .login-col form {
        padding: 30px 20px;
    }

    .login-sec .login-row .login-col .login-right-box {
        padding: 30px 20px;
    }

    .login-sec .login-row .login-col .login-right-box {
        height: unset;
    }

    .login-sec#login {
        padding: 0;
    }

    .login-sec .login-row .login-col .login-right-box .login-right-cont {
        padding: 30px;
    }

    .login-sec .login-row .login-col .login-right-box p {
        margin-top: 16px;
    }

    .login-sec .login-row .btn-learn {
        margin-top: 20px;
    }
}