* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #F4F5F6;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.main-container {
    display: flex;
    flex: 1;
    position: relative;
}

.form-section {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.graphic-section {
    width: 40%;
    position: relative;
    overflow: hidden;
}

.graphic-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: right;
    align-items: center;
}

.x-logo {
    width: 400px;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: 150%;
    position: absolute;
    right: 0%;
    left: unset;
    top: 0%;
    bottom: 0%;
    margin-block: auto;
}

[dir='rtl'] .x-logo {
    right: unset;
    left: 0%;
}

.x-logo::before {
    position: absolute;
    content: '';
    background-color: #747cbd;
    width: 450px;
    height: 450px;
    filter: blur(100px);
    inset: 0;
    right: -120px;
    margin: auto;
    border-radius: 50%;
    opacity: 0.9;
}

[dir='rtl'] .x-logo::before {
    left: -120px;
    right: unset;
}

.x-logo img {
    width: 100%;
    height: auto;
    position: relative;
}

.language-selector {
    color: #333;
    font-size: 14px;
    cursor: pointer;
    text-align: right;
}

.signup-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    padding: 30px;
    width: 450px;
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #000000;
    font-weight: 600;
}

.btn-selection {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #01387D;
    border-radius: 10px;
    background-color: white;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
    color: #333;
    font-weight: 500;
    position: relative;
}

.btn-selection:disabled {
    opacity: 0.65;
}

.social-login-icon {
    position: absolute;
    left: 12px;
    top: 0;
    margin-block: auto;
    transform: translateY(50%);
}


[dir='rtl'] .social-login-icon {
    right: 10px;
    left: unset;
}

.btn-selection:hover {
    background-color: #f9f9f9;
}

.btn-selection svg,
.btn-selection img {
    width: 20px;
    height: 20px;
}

.login-text {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
    position: relative;
}

.login-link {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
    font-weight: 400;
}


.underline-link {
    color: #000000;
    text-decoration: underline;
}

.login-link:hover {
    text-decoration: underline;
}

.notification-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f8f9fa;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e8e8e8;
}

.notification-text {
    color: #333;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.notification-text svg {
    margin-right: 8px;
}

.action-btn {
    background-color: #01387D;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.close-btn {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    margin-left: 10px;
    font-size: 16px;
}

.action-btn:disabled {
    opacity: 0.65;
}

.close-btn:disabled {
    opacity: 0.65;
}

.dimensions {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: #01387D;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 3px;
}

.email-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 350px;
    text-align: center;
}

.email-container h2 {
    margin-bottom: 10px;
    font-size: 20px;
}

.email-input {
    width: 100%;
    padding: 8px 16px;
    margin: 30px 0 20px;
    border: 1px solid #01387D;
    font-size: 16px;
    height: 46px;
    border-radius: 10px;
}

.btn {
    width: 100%;
    padding: 10px;
    background-color: #01387D;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background-color: #01387D;
    color: white;
}

.terms {
    margin-top: 10px;
    font-size: 12px;
    color: #666;
}

.terms a {
    color: #000000;
    text-decoration: underline;
}

.verification-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 350px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

.back-btn {
    position: relative;
    text-decoration: none;
    font-size: 20px;
    color: #000;
}

h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

p {
    font-size: 14px;
    color: #000000;
    font-weight: 400;
}

.change-email {
    font-size: 12px;
    color: #01387D;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
}

.code-input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.confirm-btn {
    width: 100%;
    padding: 10px;
    background: #01387D;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 400;
}

.resend-btn {
    width: 100%;
    padding: 10px;
    background: none;
    border: 1px solid #01387D;
    color: #000000;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 400;
}

.confirm-btn:disabled {
    opacity: 0.65;
}

.resend-btn:disabled {
    opacity: 0.65;
}

.login-password {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: #01387D;
    text-decoration: none;
}

.phone-input {
    border: none;
    outline: none;
    font-size: 16px;
    flex: 1;
    padding: 5px;
}

.send-btn {
    width: 100%;
    padding: 10px;
    background: #01387D;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
}

.send-btn:disabled {
    opacity: 0.65;
}

.input-group {
    display: flex;
    align-items: center;
    border: 1px solid #01387D;
    border-radius: 10px;
    padding: 5px 10px;
    background: #fff;
    margin-bottom: 15px;
}

.info-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.change-number {
    color: #01387D;
    font-size: 14px;
    text-decoration: none;
    font-weight: bold;
}

.code-inputs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    gap: 12px;
    margin-bottom: 20px;
}

.code-inputs input {
    width: 75px;
    height: 65px;
    font-size: 20px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
}

.whatsapp-verify {
    display: flex;
    align-items: center;
    gap: 6px;
    color: hsl(0deg 0% 0% / 40%);
    color: #B1B1B1;
    text-decoration: none;
    margin-bottom: 15px;
    font-weight: 600;
}

.language-switch {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 14px;
}

.language-switch a {
    text-decoration: none;
    color: #01387D;
    font-weight: bold;
}

.next-btn {
    width: 100%;
    padding: 10px;
    background: #01387D;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
}

.next-btn:disabled {
    opacity: 0.65;
}

.divider {
    margin: 15px 0;
    font-size: 14px;
    color: #666;
}

.google-signin {
    width: 100%;
    padding: 10px;
    background: none;
    border: 1px solid #01387D;
    border-radius: 10px;
    color: #000000;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-signin img {
    width: 20px;
    margin-right: 10px;
}

.register-text {
    font-size: 12px;
    color: #666;
    margin-top: 15px;
}

.register-text a {
    color: #01387D;
    text-decoration: none;
    font-weight: bold;
}

.new-signin-input {
    width: 90%;
    border: none;
    background: none;
    font-size: 14px;
    outline: none;
    padding-left: 8px;
}

.login-link {
    font-size: 12px;
    margin-top: 15px;
}

.login-link a {
    color: #01387D;
    text-decoration: none;
    font-weight: 600;
}

.signin-btn {
    width: 100%;
    padding: 10px;
    background: #01387D;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 10px;
    height: 46px;
}

.signin-btn:disabled {
    opacity: 0.65;
}

.back-btn:before {
    content: '';
    position: absolute;
    left: -15px;
    top: -26px;
    padding: 4px;
    border-style: solid;
    border-width: 0 0 2px 2px;
    border-color: #3b444f;
    transform: rotate(45deg);
}

.form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 15px;
}

.phone-input {
    position: relative;
    width: 100%;
    max-width: 360px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 0;
}

.mobile-number-input {
    width: 100%;
    padding: 12px 45px 12px 80px;
    border: 0 !important;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    box-shadow: none !important;
}

.mobile-number-input:focus {
    border: 0 !important;
    box-shadow: none !important;
}

.phone-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #555;
}

.country-code {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: bold;
}

.label_field_wrap {
    margin-bottom: 9px !important;
}

#password-input-wrapper span#toggler::before {
    content: unset !important;
}

.password-eye {
    top: 15px;
    right: 10px;
    left: unset;
    color: rgb(0 0 0 / 30%)
}

[dir='rtl'] .password-eye {
    left: 10px;
    right: unset;
}

.custom_checkbox input:checked+label:after {
    top: 13px !important;
    left: 6px !important;
    width: 5px !important;
    height: 8px !important;
}

.google-login {
    margin-right: 8px;
}

.sign-up-selection {
    font-size: 14px;
    color: #000000;
    margin-top: 0 !important;
    margin-bottom: unset !important;
    font-weight: 400;
}

.email-input::placeholder {
    color: #00000040;
    opacity: 1;
}

.mobile-number-input::placeholder {
    color: #00000040;
    opacity: 1;
}

.iti--separate-dial-code .iti__selected-flag {
    background-color: unset !important;
}

.whatsapp {
    width: 15px;
    height: 15px;
    color: #B1B1B1;
}

.form-control {
    border-radius: 10px;
    height: 46px;
}

.form-control::placeholder {
    color: #00000040;
    opacity: 1;
}

.custom_checkbox label a {
    color: #000000;
    text-decoration: none;
}

.new-signin-input::placeholder {
    color: #00000040;
    opacity: 1;
}

label {
    display: inline-block;
    margin-top: 6px;
    margin-bottom: 10px;
    font-weight: 400;
    color: #000;
}

.custom_checkbox label:before {
    top: 9px !important;
}


.custom_checkbox label {
    padding-left: 23px !important;
}

.error {
    margin-top: -11px;
    width: 100%;
    margin-bottom: 11px;
    font-weight: 400;
    font-style: normal;
    color: #EA4335 !important;
}

.login-error {
    margin-top: -8px !important;
}

.login-pasword-error {
    margin-top: 11px;
}

.verify-enail-otp {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4px;
}


.iti-mobile .iti--container {
    max-width: 300px !important;
}


[dir='rtl'] .language-link {
    text-align: left;
}


[dir='rtl'] .signup-container h1 {
    text-align: right;
}


.signin_gobal_img {
    margin-right: 4px;
}

[dir='rtl'] .signin_gobal_img {
    margin-left: 4px;
}

[dir='rtl'] .new-signin-input {
    padding-right: 8px;
}

[dir='rtl'] .google-login {
    margin-left: 8px;
}

[dir='rtl'] .back-button-svg {
    text-align: right;
}

[dir='rtl'] .back-button-svg svg {
    transform: scaleX(-1);
}

[dir='rtl'] .input-wrap {
    text-align: right;
}

[dir='rtl'] label.checkbox-label {
    text-align: right !important;
    padding-right: 23px;
    padding-left: 0 !important;
}

[dir='rtl'] .enter_phone_number {
    text-align: right;
}

[dir='rtl'] .info-text {
    text-align: right;
}

a.register-text-link {
    color: #000;
    font-weight: 500;
}

.iti.iti--allow-dropdown.iti--separate-dial-code {
    margin-right: auto !important;
    margin-left: 0 !important;
    display: flex;
}

[dir='rtl'] .iti.iti--allow-dropdown.iti--separate-dial-code {
    margin-left: auto;
    display: flex;
}

[dir='rtl'] .whatsapp-verify {
    text-align: right;
}

[dir='rtl'] .whatsapp {
    margin-left: 4px;
}



.auth-header-logo {
    position: absolute;
    top: 5vh;
    left: 12vw;
}

[dir='rtl'] .auth-header-logo {
    position: absolute;
    top: 5vh;
    left: unset;
    right: 10vw;
}

[dir='rtl'] .iti--allow-dropdown input,
[dir='rtl'] .iti--allow-dropdown input[type=text],
[dir='rtl'] .iti--allow-dropdown input[type=tel],
[dir='rtl'] .iti--separate-dial-code input, .iti--separate-dial-code input[type=text],
[dir='rtl'] .iti--separate-dial-code input[type=tel] {
    /* text-align: center !important; */
}

.auth-footer-logo {
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: -1;
}

[dir='rtl'] .auth-footer-logo {
    left: 0px;
    right: unset;
}

[dir='rtl'] .signup-container {
    text-align: right;
}

[dir='rtl'] .login-link {
    text-align: right;
}


[dir='rtl'] .new-company .error {
    margin-top: 4px;
}


.input-group-error {
    border: 1px solid #EA4335;
}



.form-control:focus {
    box-shadow: none !important;
}



@media (min-width:1920px) {

    .auth-header-logo {
        position: absolute;
        left: 15vw;
    }

    [dir='rtl'] .auth-header-logo {
        left: unset;
        right: 15vw;
    }
}

@media (max-width:1399px) {
    .x-logo {
        width: 380px;
    }

    .x-logo::before {
        width: 250px;
        height: 250px;
        filter: blur(70px);
        right: -281px;
    }

    .auth-header-logo {
        left: 10vw;
    }

    [dir='rtl'] .auth-header-logo {
        left: unset;
        right: 10vw;
    }

}


@media (min-width:992px) {
    .auth-footer-logo {
        display: none;
    }
}

@media (max-width:1199px) {
    .auth-header-logo {
        left: 5vw;
    }

    [dir='rtl'] .auth-header-logo {
        left: unset;
        right: 5vw;
    }

}

@media (max-width:991px) {

    body {
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
    }

    .language-selector {
        margin-top: 40px;
    }

    .form-section {
        width: 100%;
    }

    .x-logo,
    .graphic-section {
        display: none;
    }

    .auth-header-logo {
        left: 18vw;
    }

    [dir='rtl'] .auth-header-logo {
        left: unset;
        right: 18vw;
    }
}


@media (max-width:767px) {

    .auth-header-logo {
        left: 10vw;
    }

    [dir='rtl'] .auth-header-logo {
        left: unset;
        right: 10vw;
    }
}

@media (max-width:575px) {
    .signup-container {
        width: 100%;
        max-width: 350px;
        min-width: 280px;
        padding: 20px;
    }

    .auth-header-logo {
        left: 8vw;
    }

    [dir='rtl'] .auth-header-logo {
        left: unset;
        right: 8vw;
    }

    .code-inputs input {
        width: 52px;
        flex: 1 1 52px;
        height: 52px;
    }

    .verify-enail-otp {
        flex-direction: column;
    }

    .phone-icon {
        display: none;
    }
}