.login_page_content
{
    background: var(--theme-content);
}

.login_title
{
    color: var(--theme-white);
    font-size: 32px;
    margin-bottom: 40px;
}
.login_info
{
    color: var(--theme-white);
    font-size: 24px;
}

span.register_page_title {
    font-size: 22px;
    font-weight: 600;
    color: var(--theme-white);
}

.register_form .form-label {
    font-size: 16px !important;
    font-weight: 500 !important;
}

.register_form_content {
    padding: 10px 20px;
}

.textbox-wrapper {
    display: block;
    position: relative;
    height: 60px;
    border-radius: 3px 3px 0 0;
    cursor: text;
    background-color: var(--theme-secondary-color);
    margin-bottom: 15px;
    overflow: hidden;
}


.textbox-wrapper label {
    display: block;
    position: absolute;
    top: 21px;
    left: 16px;
    line-height: 1em;
    font-size: 1em;
    color: var(--theme-white);
    font-weight: 500;
    z-index: 1;
    transition: .1s;
    opacity: 0.7;
}

.textbox-wrapper input {
    display: block;
    position: absolute;
    top: 30px;
    left: 16px;
    line-height: 1em;
    color: var(--theme-white);
    font-weight: 500;
    background: transparent;
    border: none;
    outline: none;
    z-index: 10;
}

.textbox-border {
    position: absolute;
    bottom: 0;
    background-color: var(--theme-white);
    width: 100%;
    height: 1px;
}

/* MAD-RIPPLE EFFECT */
.ripple {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    /* to contain zoomed ripple */
    transform: translateZ(0);
    border-radius: inherit;
    /* inherit from parent (rounded buttons etc) */
    pointer-events: none;
    /* allow user interaction */
    animation: ripple-shadow 0.4s forwards;
    -webkit-animation: ripple-shadow 0.4s forwards;
}

.rippleWave {
    backface-visibility: hidden;
    position: absolute;
    border-radius: 50%;
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
    background: var(--theme-white);
    opacity: 0.45;
    animation: ripple 2s forwards;
    -webkit-animation: ripple 2s forwards;
}

@keyframes ripple {
    to {
        transform: scale(24);
        opacity: 0;
    }
}

@-webkit-keyframes ripple {
    to {
        -webkit-transform: scale(24);
        opacity: 0;
    }
}


.textbox-wrapper .iti--separate-dial-code .iti__selected-flag {
    background-color: var(--theme-secondary-color);
    border: 0 !important;
    height: 58px !important;
    color: var(--theme-white);
    border-right: 1px solid var(--theme-primary-color) !important;
}

.textbox-wrapper .phone-label {
    margin-left: 85px;
}

.register-next-button {
    font-weight: 600;
    font-size: 18px;
}

.textbox-wrapper .pass-wrapper {
    position: relative;
    display: flex;
    margin-bottom: 14px;
    color: var(--theme-white);
    height: 60px;
}

.login_footer_buttons {
    color: var(--theme-white);
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.login_footer_buttons .forgot_button {
    color:  var(--theme-yellow);
    text-decoration: none;
    width: 100%;
    display: flex;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.login_footer_buttons .create_account {
    color:  var(--theme-white);
    text-decoration: none;
    width: 100%;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.login_footer_buttons .create_account a {
    color:  var(--theme-yellow);
    text-decoration: none;
    font-weight: 600;
}

.login_forgot_div {
    margin-bottom: 30px;
    display: flex;
    justify-content: flex-end;
}

.login_forgot_div a {

    text-decoration: none;
    color: var(--theme-white);
}

.login_forgot_div a:hover {

    color: var(--theme-yellow);
}