html,
body {
    width: 100%;
    height: 100%;
    color: var(--bs-primary);
}

#login-wrapper {
    background-image: url('/assets/orisha/login_bg.jpg');
    background-position: center;
    background-size: cover;
    box-sizing: border-box;
    position: relative;
}

#login-forms-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    max-width: 372px;
    height: auto;
    min-height: 570px;
    background: #fff;
    border-radius: 0 0 25px 25px;
    padding: 24px 24px 56px 24px;
    box-sizing: border-box;
    position: absolute;
    left: 100px;
    z-index: 999;
}

.logo {
    text-align: center;
}

.logo>img {
    width: 280px;
}

#reset-pwd-btn {
    width: 99%;
}

#forgot-pwd-btn {
    text-decoration: none;
    &:hover {
        text-decoration: underline;
    }
}

.mt {
    margin-top: 40px;
}

#pwd-eye {
    cursor: pointer;
    width: 35px;
}

#form-forgot-pwd-wrapper {
    display: none;
}

.login-bottom-img {
    max-width: 1024px;
    height: auto;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
	border-top-right-radius: var(--bs-border-radius)!important;
	border-bottom-right-radius: var(--bs-border-radius)!important;
}

@media (max-width: 576px) {
    #login-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        box-sizing: border-box;
    }

    #login-forms-wrapper {
        border-radius: 25px;
        position: static;
        transition: all 0.5s ease;
    }
}

/*@media only screen and (max-width: 500px) {
    #forgot-pwd-captcha {
        transform: scale(0.77);
        transform-origin: 0 0;
    }
}*/