#container {
    display: flex;
    font-family: "Inter", sans-serif;
}

#leftBlock {
    display: block;
    width: 40vw;
    box-sizing: border-box;
    background-color: #fff;
}

#leftBlock #content {
    padding: 100px 80px;
}

#leftBlock #content #logo {
    width: 124px;
}

#leftBlock #content #title {
    font-size: 24px;
    font-weight: 600;
    margin-top: 64px;
}

#leftBlock #content form {
    margin-top: 42px;
}

#leftBlock #content .form-group label {
    margin: 12px 0 7px 0;
}

#leftBlock #content .form-group input {
    border-radius: 5px;
    padding: 20px 10px;
}

#showPassword {
    position: absolute;
    top: 50px;
    right: 14px;
    cursor: pointer;
}

.form-control-feedback.fa {
    line-height: 70px;
}

#rightBlock {
    width: 60vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(143deg, #5386ff, #0139d3);
}

#rightBlock #content {
    background: url("/assets/images/bg-login.png") no-repeat right;
    background-size: contain;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#option {
    margin: 20px 0 0 0;
    width: 100%;
}

.clearfix {
    clear: both;
}

#option #remember {
    float: left;
    font-weight: normal;
}

#option #forget {
    float: right;
}

.btn-submit {
    margin-top: 24px;
    color: #fff;
    background-color: #007bff;
    border: 0;
    padding: 10px 0;
    font-weight: bold;
}

.btn-submit:hover,
.btn-submit:active,
.btn-submit:focus {
    color: #fff;
    border: 0;
    outline: none;
    background-color: #1586ff;
}

label.asterisk::after {
    content: " *";
    font-size: 10px;
    color: red;
}

@media (max-width: 992px) {
    #leftBlock {
        width: 100vw;
    }

    #rightBlock {
        display: none;
    }
}
