::-webkit-scrollbar {
    width: 8px;
    border: 2px solid transparent;
}

::-webkit-scrollbar-track {
    border-radius: 0;
    background: transparent;
}

::-webkit-scrollbar-thumb {
    border-radius: 10;
    background: rgba(0, 99, 248, 0.2);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
    border: 2px solid var(--primary);
}

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;
}

.tbr_auth--aside {
    width: 400px;
    min-width: 400px;
    max-width: 400px;
    min-height: 100vh;
    height: 100%;
    background-color: #FFFFFF;
    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 {
    width: calc(100% - 400px);
    min-width: calc(100% - 400px);
    max-width: calc(100% - 400px);
    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 img {
    max-width: 160px;
}

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

.tbr_auth--form-wrap {
    position: relative;
    display: block;
    width: 100%;
    max-width: 415px;
    margin: auto;
    padding: 20px 0 0;
}

.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;
}

@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: 100px;
    }

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