.login-page-wrap .item-logo a:before {
    content: unset !important;
}

.item-title {
    display: flex;
    gap: 12px;
}

.edbr_left_arrow_icon {
    font-size: 30px;
    transform: rotate(180deg);
    border-radius: 50%;
    color: #000;
    padding: 0 !important;
    cursor: pointer;
}

.edbr_form_tip {
    margin-top: 0;
    color: #9c8e8e;
    font-size: 16px;
    width: fit-content;
    line-height: 20px;
}

.login-page-wrap .tab-content {
    max-width: 470px !important;
}

.login-page-wrap .tab-content form .form-footer {
    justify-content: center !important;
}

.edbr_input_error_show {
    color: red;
    font-size: 14px;
    line-height: 20px;
    margin-top: 4px;
    text-align: left;
    width: 100%;
}

.edbr_user_email {
    font-weight: bold;
}

.edbr_verf_code_inputs {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.edbr_otp_input_wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.edbr_verf_otp_input {
    display: flex;
    width: 48px;
    height: 48px;
    padding: 12px !important;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.85);
    color: #000000 !important;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    border: 1px solid #e8e8e8 !important;
}

.edbr_verf_code_inputs:hover .edbr_verf_otp_input {
    border: 1px solid rgba(0, 0, 0, 0.20);
    background: rgba(0, 0, 0, 0.05);
}

.edbr_form_btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.edbr_loader_wrap {
    display: none;
}

.edbr_loader {
    display: flex;
    animation: spin 0.8s linear infinite;
    width: 24px;
    height: 24px;
}

.edbr_button_spinner {
    width: 24px;
    height: 24px;
    position: relative;
    border-radius: 50%;
    background: conic-gradient(#f76b15 0%, #ffffff 100%);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), black calc(100% - 4px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 4px), black calc(100% - 4px));
}

.edbr_button_spinner .edbr_spin_1,
.edbr_button_spinner .edbr_spin_2 {
    border: 4px solid transparent;
    width: 24px;
    height: 24px;
    position: absolute;
    border-radius: 100px;
    outline-offset: -2px;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.edbr_input_tip {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    line-height: 16px;
    margin-top: 2px;
}

@media only screen and (max-width: 575px) {

    .login-page-wrap .tab-content {
        max-width: 100% !important;
    }
}