html,
body {
    overflow-y: hidden !important;
}

body {
    background-color: #FFFFFF;
}

.tbr_auth--wrap {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../svg/auth/Background-Auth.svg');
    background-size: cover;
    background-repeat: no-repeat;
}

.tbr_auth--aside {
    width: 816px;
    min-width: 816px;
    max-width: 816px;
    min-height: 100vh;
    height: 100%;
    background-color: transparent;
}

.tbr_auth--contents {
    width: calc(100% - 816px);
    min-width: calc(100% - 816px);
    max-width: calc(100% - 816px);
    padding: 40px;
    background-color: transparent;
    height: 100vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-self: center;
}

.tbr_auth--bg-top {
    background-image: url('../svg/etc/Auth-Bg-Top.svg');
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.tbr_auth--bg-bottom {
    background-image: url('../svg/etc/Auth-Bg-Bottom.svg');
    background-size: 100%;
    background-position: bottom;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tbr_auth--aside-contents {
    padding: 40px;
}

.tbr_auth--aside-contents .content {
    position: absolute;
    max-width: 513px;
    left: 150px;
    top: 150px;
    color: #221E1F;
}

.tbr_auth--aside-contents .content img {
    width: 497px;
    height: 318px;
}

.tbr_auth--aside-contents .content .auth-text {
    margin-top: 50px;
}

.tbr_contact--administrator {
    text-align: right;
}

.tbr_auth--form-wrap {
    position: relative;
    display: block;
    width: 100%;
    margin: auto;
    padding: 50px 70px;
    border-radius: 10px;
    background-color: #FFFFFF;
}

.tbr_auth--form-wrap .form-group {
    border-top: none;
}

.tbr_auth--form-wrap label {
    font-family: "Montserrat Bold", sans-serif;
}

.tbr_auth--form-wrap .tbr_form--control {
    height: 64px;
    font-size: 16px !important;
    letter-spacing: .5px;
}

.tbr_auth--form-wrap .tbr_alert {
    margin: 25px 0 32px;
}

.tbr_show_password {
    position: absolute;
    top: 299px;
    right: 25px;
}

.tbr_show_password:hover {
    cursor: pointer;
}

/* Show hide password */
.password-field {
    position: relative;
}
.show-password {
    position: absolute;
    top: calc(50% - 12px);
    right: 20px;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

@media only screen and (min-width: 992px) {
    .tbr_mobile--contents,
    .tbr_contact--mobile-administrator {
        display: none;
    }
}

@media only screen and (max-width: 992px) {
    .tbr_auth--aside {
        display: none;    
    }

    .tbr_auth--contents {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        padding: 40px 20px;
    }

    .tbr_contact--administrator {
        display: none;
    }

    .tbr_auth--form-wrap {
        padding-top: 0;
        margin-top: 0;
    }

    .tbr_mobile--contents {
        margin-bottom: 40px;
    }

    .tbr_mobile--contents img {
        width: 130px;
    }

    .tbr_contact--mobile-administrator {
        text-align: center;
        margin-top: 40px;
    }
}