body#login-page {
    background-color: var(--k-login-page-bg-color);
}

body#login-page .bg-box-container {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: linear-gradient(148deg, rgb(22, 177, 75, 0.2), rgba(0,0,0,1));
    z-index: 1;
}

body#login-page .bg-box-container .overlay {
    
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: linear-gradient(to right, rgb(22, 177, 75, 0.2), rgba(0,0,0,1));
}

body#login-page .bg-box-container .x {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0%;
}
body#login-page .bg-box-container .y {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0%;
    display: flex;
}

body#login-page .bg-box-container .x-box {
    width: 100%;
    height: 150px;
    background-image: url('../images/line-x.png');
    background-repeat: no-repeat;
    background-size: contain;
}
body#login-page .bg-box-container .y .y-box {
    width: 150px;
    height: 100%;
    flex-shrink: 0;
    background-image: url('../images/line-y.png');
    background-repeat: no-repeat;
    background-size: contain;
}


body#login-page img.chakra {
    width: 436px;
    height: 465px;
}

#main-content {
    width: 100%;
    height: 100%;
    z-index: 2;
    position: relative;
}

#image-container {
    height: 100vh;
}

#login-form-container {
    height: 100vh;
}

#login-form {
    width: 445px;
    height: 595px;
    background-color: #fff;
    border-radius: 6px;
    padding: 36px 18px;
}

img.log {
    width: 85px;
    height: 125px;
}

.input-group input,
.input-group span {
    background-color: #EAEAEA;
}

.form-label {
    color: #0C140C;
    font-family: Inter-bold;
    font-weight: 500;
    font-size: 13.28px;
    line-height: 16px;
}

#login-form-container {
    padding-left: 0px;
}

.invalid-feedback {
    font-weight: bold  !important;
}

@media screen and (min-width: 768px ) {
    #login-form-container {
        padding-left: 100px;
    }
    #image-container {
        padding-right: 100px;
    }
}