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

body {
    background-color: var(--white);
}

.tbr_auth--wrap {
    width: 100%;
    height: 100vh;
    display: flex;
}

.tbr_auth--aside {
    width: 400px;
    min-width: 400px;
    height: 100%;
    background-color: var(--white);
    box-shadow: 0px 0px 90px 0px rgba(79, 66, 180, 0.1);
    -webkit-box-shadow: 0px 0px 90px 0px rgba(79, 66, 180, 0.1);
    -moz-box-shadow: 0px 0px 90px 0px rgba(79, 66, 180, 0.1);
}

.tbr_auth--contents {
    height: 100vh;
    width: calc(100% - 400px);
    min-width: calc(100% - 400px);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    background-image: url('../svg/etc/Auth-Bg-Right.svg');
    background-position: bottom right;
    background-repeat: no-repeat;
}

.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 img {
    max-width: 180px;
}

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

.tbr_auth--form-wrap {
    width: 440px;
    min-height: 100px;
    padding: 30px 20px 35px;
    margin: auto;
}

.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;
    border-radius: 12px;
}

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

.tbr_auth--form-wrap h3 {
    font-size: 34px;
}

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

.tbr_show_password:hover {
    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%;
    }

    .tbr_contact--administrator {
        display: none;
    }

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