#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(320deg, #ffcf62 -4%, #fa7e2d);
}

#rightBlock #bg-right {
    position: relative;
    display: block;
    width: 80%;
    height: 60%;
    margin: 200px auto;
    background: url("/assets/images/bg-info.png") no-repeat;
    background-size: cover;
    border-radius: 32px;
}

#rightBlock #bg-right #content {
    width: 60%;
    position: absolute;
    left: 50px;
    top: 160px;
}

#rightBlock #bg-right #content h3 {
    margin-top: 0px;
}

#rightBlock #bg-right #people {
    position: absolute;
    right: 50px;
    top: 160px;
    height: 100%;
}

#rightBlock #bg-right #people img {
    height: 100%;
}

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

.clearfix {
    clear: both;
}

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

#option #forget {
    float: right;
}

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

.btn-orange:hover,
.btn-orange:active,
.btn-orange:focus {
    color: #fff;
    border: 0;
    outline: none;
    background-color: #fa772d;
}

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

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

    #rightBlock {
        display: none;
    }
}
