/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.auth-form-input, .auth-form-wrapper, body {
    background-color: #fff
}

.auth-form-button, a {
    transition: .3s ease-in-out
}

    .auth-form-button:focus, .auth-form-button:hover, a:active, a:focus, a:hover {
        opacity: .85;
        cursor: pointer
    }

:root {
    --primary: #149ade;
    --secondary: #0088EB;
    --gray: #736f82;
    --light: #eaecef;
    --dark: #575757;
    --danger: #ef544c;
    --danger-light: #ffdcda;
    --warning: #ffca47;
    --success: #0088EB;
    --success-light: #e6ffda;
    --radius: 6px;
    --border: #c3c2cb;
    --shadow: 0 3px 10px rgba(0,0,0,.3)
}

body {
    font-size: 16px
}

body, button, input, select {
    font-family: Cairo,sans-serif
}

[dir=rtl] body, [dir=rtl] button, [dir=rtl] input, [dir=rtl] select {
    font-family: Tajawal,sans-serif
}

a {
    color: var(--secondary);
    text-decoration: none
}

    a:active, a:focus, a:hover {
        text-decoration: underline
    }

strong {
    font-weight: 700
}

.auth-form-wrapper {
    display: flex;
    height: 100%;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    padding: 0 60px
}
@media(max-width:575px){
    .auth-form-wrapper{
        padding:0 20px;
    }

}

.auth-form-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center
}

.auth-form-wrapper .auth-logo {
    margin: 15px auto
}

.auth-form-wrapper .tabs {
    display: flex;
    flex-wrap: nowrap;
    width: 100%
}

.auth-form-tabs {
    display: flex
}

    .auth-form-tabs .tab-link {
        display: flex;
        width: 100%;
        height: 50px;
        background-color: var(--light);
        color: var(--dark);
        border: none;
        border-top: 3px solid var(--dark);
        font-size: 18px;
        text-align: center;
        align-items: center;
        justify-content: center;
        text-transform: uppercase
    }

        .auth-form-tabs .tab-link:focus, .auth-form-tabs .tab-link:hover {
            cursor: pointer
        }

        .auth-form-tabs .tab-link.active {
            border-top-color: var(--primary);
            background-color: #fff
        }

.auth-form-wrapper .tabcontent {
    display: none;
    animation: 1s fadeEffect
}

@keyframes fadeEffect {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.auth-form-element {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 15px
}

.auth-form-error, .auth-form-label {
    align-items: center;
    font-weight: 500
}

.auth-form-label {
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--dark);
    justify-content: space-between;
    display: none
}

.auth-form-input {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 3px 20px;
    height: 44px;
    font-size: 14px
}

    .auth-form-input:active, .auth-form-input:focus {
        outline: 0;
        box-shadow: none;
        border-color: var(--primary)
    }

    .auth-form-input::placeholder {
        color: var(--border)
    }

.auth-form-error {
    display: flex;
    color: var(--danger);
    font-size: 13px;
    gap: 5px;
    margin-top: 5px
}

.auth-form-button {
    background-color: var(--secondary);
    color: #fff;
    font-size: 18px;
    border: 1px solid var(--secondary);
    text-transform: uppercase;
    font-weight: 700;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    height: 44px
}

.auth-form-checkbox {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 25px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 15px
}

html[dir=rtl] .auth-form-checkbox {
    padding-left: 0;
    padding-right: 30px
}

.auth-form-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}

.checkmark {
    position: absolute;
    top: -4px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border)
}

html[dir=rtl] .checkmark {
    left: auto;
    right: 0
}

.auth-form-checkbox input:checked ~ .checkmark {
    background-color: var(--primary);
    border-color: var(--primary)
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none
}

.auth-form-checkbox input:checked ~ .checkmark:after {
    display: block
}

.auth-form-checkbox .checkmark:after {
    left: 0;
    top: -3px;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.auth-form-register {
    color: var(--gray);
    display: block;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    margin-top: 15px
}
.auth-form-forgetPassword {
    color: var(--blue-600-default, #0088EB);
    /* English/Sub-titles/S3 */
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 18px */
   /*text-align:right;*/
    margin-bottom:40px;
}
.auth-form-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    padding: 15px 20px;
    font-weight: 650;
    line-height:1.5;
}

    .auth-form-alert.success {
        background-color: var(--success-light);
        color: var(--secondary)
    }

    .auth-form-alert.danger {
        background-color: var(--danger-light);
        color: var(--danger)
    }

    .auth-form-alert.multiple-errors {
        flex-direction: column;
        align-items: flex-start
    }

        .auth-form-alert.multiple-errors ul li {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            gap: 10px
        }

            .auth-error-page .auth-form-title, .auth-form-alert.multiple-errors ul li:last-child {
                margin-bottom: 0
            }

.auth-form-otp {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    margin-bottom: 15px;
    justify-content: center;
    padding:0 60px;
}
@media(max-width:575px) {
    .auth-form-otp {
        gap: 5px;
    }
}

    .auth-form-otp .auth-form-input {
        display: flex;
        width: 30px;
        text-align: center
    }

.auth-otp-resend {
    margin-bottom: 30px;
    text-align: center
}

.auth-error-page {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px
}

    .auth-error-page svg {
        color: var(--danger)
    }

    .auth-error-page .auth-form-button {
        width: 100%;
        margin-top: auto
    }

.auth-otp-resend .time-box {
    padding: 0 5px;
    color: #149ade;
    display: inline-block;
    font-weight: 700
}

#btnResend {
    display: block;
    padding-top: 15px
}

.alert {
    padding: 20px;
    color: #fff;
    opacity: 1;
    transition: opacity .6s;
    margin-bottom: 15px
}

.alert-error {
    background-color: #f44336
}

.alert-success {
    background-color: #04aa6d
}

.auth-form-test {
    line-height: 24px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    visibility: visible;
    overflow-x: hidden;
    font-family: Tajawal,sans-serif;
    color: #575757
}


.captcha-input {
    padding-right: 50%;
    padding-left: 50%;
    z-index: 1;
}
.ta.captcha .captcha-input.clearable {
    background: rgba(0,0,0,0) !important;
}
.ta.form-control {
    height: 52px;
    border: 1px solid #c3c2cb;
    font-size: 13px;
    border-radius: 6px;
    position: relative;
    padding-right:140px;
}


 svg {
    fill: #149ade;
}

.captcha-image + .captcha-image, .captcha-refresh + .captcha-refresh, .captcha-input + .captcha-input {
    margin-bottom: 30%;
}

.captchaGroup{
    position:relative;

}
.captcha-refresh {
    position: absolute;
    top: 50%;
    left: 15px;
    background: rgba(0,0,0,0);
    border: none;
    display: flex;
    align-items: flex-end;
    justify-content: left;
    z-index: 3;
    transform:translateY(-50%);
}

.captcha-image {
    position: absolute;
    top: 50%;
    right: 15px;
    width: 100px;
    z-index: 2;
    border-radius: 6px;
    transform: translateY(-50%);
}
.terms-consent {
    display: flex;
    align-items: flex-end;
    margin-bottom: 10px;
}

.auth-form-checkbox-termsConditions {
    width: 18px;
    height: 18px;
    vertical-align: middle;
}


.login-option {
    display: flex;
    padding: 8px;
    align-items: center;
    margin: 8px;
    gap: 8px;
    align-self: stretch;
    border-radius: 8px;
    background: var(--slate-50-lighter, #F8FAFC);
    margin-top: 24px;
}

    .login-option:hover {
        background-color: #f0f0f0;
    }

.icon img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 64px;
    border: 0.5px solid var(--Slate-200, #E2E8F0);
    background: var(--Slate-White, #FFF);
}

.text {
    flex: 1;
}

.title {
    color: var(--slate-900-default-text, #0F172A);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%; /* 18.2px */
}

.subtitle {
    color: var(--Slate-600, #475569);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
}

.arrow {
    font-size: 20px;
    color: #aaa;
    margin-left: 12px;
}
.other-ways {
    color: var(--blue-600-default, #0088EB);
    text-align: center;
    /* English/Titles/T2 */
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 22.4px */
    margin-top:24px;
}
.hidden {
    display: none !important;
}
