html,
body {
    margin: 0;
    overflow: hidden;
}

.tbr_auth--wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 0;
}

.tbr_auth--aside {
    width: 400px;
    min-width: 400px;
    height: 100%;
    padding: 20px 0 20px 20px;
}

.tbr_auth--aside-bg {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background-color: var(--primary);
    background-image: url('../images/auth_illustration.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: -2px -3px 20px 25px rgba(119, 0, 255, 0.15);
    -webkit-box-shadow: -2px -3px 20px 25px rgba(119, 0, 255, 0.15);
    -moz-box-shadow: -2px -3px 20px 25px rgba(119, 0, 255, 0.15);
}

.tbr_auth--contents {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin-left: 20px;
    width: calc(100% - 420px);
    min-width: calc(100% - 420px);
    overflow-y: auto;
    background-image: url('../svg/etc/auth_bg_right.svg');
    background-size: initial;
    background-position: right bottom;
    background-repeat: no-repeat;
}

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

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

.tbr_form--control {
    font-size: 18px;
    height: 64px;
    min-height: 64px;
    border-radius: 12px;
    padding: 0px 24px 1px;
    background-color: var(--white);
    border-color: var(--white);
    box-shadow: 0px 8px 24px 0px rgba(var(--rgb-primary),0.2) !important;
}

.tbr_form--control.is-invalid, 
.was-validated .tbr_form--control:invalid {
    box-shadow: 0px 8px 24px 0px rgba(var(--rgb-danger),0.2) !important;
}

.tbr_form--control[readonly],
.tbr_form--control[disabled] {
    color: var(--paragraph);
    background-color: var(--white);
    border-color: var(--white);
    cursor: not-allowed;
}

.tbr_btn {
    font-size: 18px;
    height: 54px;
    min-height: 54px;
    border-radius: 12px;
    padding: 0 24px 2px;
}

/* Password meter */
html .strength {
    height: 8px;
    width: 100%;
    background: #fff;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    transition: height 0.5s;
}

html .strength span {
    width: 0px;
    height: 8px;
    border-radius: 8px;
    transition: width 0.5s;
    display: block;
    text-align: center;
    color: white;
}

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

    .tbr_auth--contents {
        width: 100%;
        min-width: 100%;
        margin-left: 0;
    }
}