/* Change Password */
#request_change_passwod.hidden,
#change_password_form.hidden {
    opacity: 0;
    height: 0;
}

#request_change_passwod.show,
#change_password_form.show {
    opacity: 1;
    height: auto;
}

.input-group-opt {
    width: 100%;
    display: flex;
    align-items: end;
    gap: 10px;
}
.input-group-opt .wrap_input input {
    padding: 0px 10px;
}
.input-group-opt .wrap_input span {
    display: none;
}
.input-group-opt button {
    width: 100%;
    max-width: 130px;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--white);
    -webkit-box-shadow: 0px 4px 6px rgba(92, 122, 234, 0.25);
    box-shadow: 0px 4px 6px rgba(92, 122, 234, 0.25);
    font-size: 14px;
    cursor: pointer;
    background: -o-linear-gradient(120deg, #964CE8 0%, #4E60FF 100%);
    background: linear-gradient(330deg, #964CE8 0%, #4E60FF 100%);
    height: 40px;
    padding: 0px 10px;
    border-radius: 40px;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.change-pass-inputs {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    align-items: start !important;
}

/* Two Factor */
.two-factor-title {
    display: flex;
    align-items: center;
}

.two-factor-title p{
    margin: 0;
}

#twoFactorAuthSection {
    max-width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 15px auto;
}

#twoFactorAuthSection .two-factor-help {
    font-weight: 700;
    color: var(--tblack);
    text-align: center;
    width: 100%;
}

#secretKey {
    font-weight: 700;
    color: var(--tblack);
    text-transform: uppercase;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 10px;
}

#twoFactorForm {
    width: 100%;
    position: relative;
}

#twoFactorForm .otp_wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 5px 0px 15px 0px;
}

#twoFactorForm .otp_wrapper label {
    font-size: 14px;
    color: var(--tblack);
    font-weight: 500;
}

#twoFactorForm .otp_wrapper input {
    opacity: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.otp_code_wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#twoFactorForm button {
    width: 100%;
    box-shadow: 0px 4px 6px rgba(92, 122, 234, 0.25);
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px;
    line-height: 19px;
    color: var(--white);
    cursor: pointer;
    border: none;
    background: -o-linear-gradient(120deg, #964CE8 0%, #4E60FF 100%);
    background: linear-gradient(330deg, #964CE8 0%, #4E60FF 100%);
    height: 40px;
    border-radius: 40px;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}