﻿@import url('all.css');

@font-face {
    font-family: IRANSans;
    src: url("../fonts/IRANSans.woff");
    font-display: swap
}

:root {
    --dir: rtl;
    --color1: rgba(44, 160, 167, 1);
    --color2: rgba(8, 214, 179, 1);
    --color3: rgba(10, 155, 127, 1);
    --color4: rgba(194, 188, 247, 1);
    --color5: rgba(244, 244, 249, 1);
    --color6: rgba(112, 112, 112, 1);
    --color7: #000;
    --color8: rgba(123, 97, 255, 1);
    --scrollbarBG: #eee;
    --radius: 8px;
}

*::-webkit-scrollbar {
    width: 6px;
    max-height: 6px;
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--color4) var(--scrollbarBG);
}

    *::-webkit-scrollbar-track {
        background: var(--scrollbarBG);
    }

    *::-webkit-scrollbar-thumb {
        border-radius: 20px;
        transform: translateX(-10px);
        background-color: var(--scrollbarBG);
        border: 3px solid var(--color4);
    }

html {
    direction: var(--dir);
    font-size: var(--fontsize1);
}

body {
    font-family: IRANSans;
    font-feature-settings: "ss01";
}

html,
body {
    padding: 0;
    margin: 0;
    color: var(--color7);
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    outline: none;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}
/* Reset و پایه */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    direction: rtl;
}

.hidden {
    display: none !important;
}

/* Splash Screen */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.splash-content {
    text-align: center;
}

.splash-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    animation: pulse 1.5s infinite;
}

.splash-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4a90e2;
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

div#offline-section {
    position: fixed;
    top: 10px;
    left: 0;
    right: 0;
    width: calc(100% - 40px);
    max-width: 360px;
    margin: auto;
    padding: 10px;
    background: linear-gradient(45deg, #d1003a, #ff2d67, #d1003a);
    color: #fff;
    border-radius: 6px;
    font-family: 'IRANSans' !important;
    text-align: center;
    transition: all 0.2s;
    transform: translateY(50px);
    pointer-events: none;
    opacity: 0;
}

    div#offline-section.show {
        transform: translateY(0px);
        opacity: 1;
    }
/* فرم لاگین */
#login-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.login-container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

    .login-container h1 {
        text-align: center;
        margin-bottom: 1.5rem;
        color: #333;
    }

.input-group {
    margin-bottom: 1rem;
}

    .input-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
    }

    .input-group input {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 1rem;
    }

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

    .checkbox-label input {
        margin-left: 0.5rem;
        width: auto;
    }

.btn-primary {
    width: 100%;
    padding: 0.75rem;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .btn-primary:hover {
        background-color: #357abd;
    }

.btn-secondary {
    padding: 0.5rem 1rem;
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .btn-secondary:hover {
        background-color: #e0e0e0;
    }

#login-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
    background-color: #ffebee;
    color: #c62828;
}

/* بخش اصلی برنامه */
.app-header {
    background-color: white;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-main {
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.user-info {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.dashboard {
    margin-bottom: 1.5rem;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .card h4 {
        margin-bottom: 0.5rem;
        color: #666;
    }

.online {
    color: #4caf50;
}

.offline {
    color: #f44336;
}

.data-container {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.data-list {
    list-style: none;
    margin: 1rem 0;
}

    .data-list li {
        padding: 0.5rem;
        border-bottom: 1px solid #eee;
    }

        .data-list li:last-child {
            border-bottom: none;
        }

/* اعلان آفلاین */
#offline-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ff9800;
    color: white;
    text-align: center;
    padding: 1rem;
    z-index: 1000;
}

.boxInput.boxselect .error-message {
    position: absolute;
    bottom: -15px;
    right: 13px;
}


input,
textarea,
select,
button {
    font-size: var(--fontsize1);
    font-family: IRANSans;
    font-feature-settings: "ss01";
}

.loginBox input,
.loginBox select {
    position: relative;
    width: 100%;
    height: 55px;
    border-radius: 60px;
    padding: 0 20px;
    border: 1px solid var(--color4) !important;
    background: var(--color5);
    outline: none !important;
    user-select: none !important;
    box-shadow: none !important;
    -webkit-appearance: none;
}

.contentfrmOTP div#vcode input[type=number]::-webkit-outer-spin-button,
.contentfrmOTP div#vcode input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.contentfrmOTP div#vcode input[type=number] {
    -moz-appearance: textfield;
}

.loginBox textarea {
    position: relative;
    width: 100%;
    min-height: 200px;
    max-height: 200px;
    resize: none;
    border-radius: 60px;
    padding: 0 20px;
    border: 1px solid var(--color4) !important;
    background: var(--color5);
    outline: none !important;
    user-select: none !important;
    box-shadow: none !important;
}

.loginBox input.mobilenumber {
    padding-left: 60px;
}

select {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBVcGxvYWRlZCB0bzogU1ZHIFJlcG8sIHd3dy5zdmdyZXBvLmNvbSwgR2VuZXJhdG9yOiBTVkcgUmVwbyBNaXhlciBUb29scyAtLT4NCjxzdmcgZmlsbD0iI0IyMzYxOSIgaGVpZ2h0PSI4MDBweCIgd2lkdGg9IjgwMHB4IiB2ZXJzaW9uPSIxLjEiIGlkPSJMYXllcl8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiANCgkgdmlld0JveD0iMCAwIDQwNy40MzcgNDA3LjQzNyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8cG9seWdvbiBwb2ludHM9IjM4Ni4yNTgsOTEuNTY3IDIwMy43MTgsMjczLjUxMiAyMS4xNzksOTEuNTY3IDAsMTEyLjgxNSAyMDMuNzE4LDMxNS44NyA0MDcuNDM3LDExMi44MTUgIi8+DQo8L3N2Zz4=);
    background-size: 10px;
    background-position: 10px center;
    background-repeat: no-repeat;
    padding: 0 20px 0 50px;
}



.loginPageInner {
    position: fixed;
    width: 100%;
    height: 100svh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

    .loginPageInner .loginContent {
        position: relative;
        width: 100%;
        max-width: 360px;
        border-radius: 15px;
        overflow: hidden;
    }

        .loginPageInner .loginContent:before {
            position: relative;
            display: block;
            padding-top: 168%;
            content: '';
        }

        .loginPageInner .loginContent .rowBtns {
            position: absolute;
            left: 0;
            bottom: auto;
            padding: 15px;
            width: 100%;
            z-index: 1001;
            top: calc(100% - 70px) !important;
        }

        .loginPageInner .loginContent .intro {
            background-color: #06665b;
        }

            .loginPageInner .loginContent .intro,
            .loginPageInner .loginContent .intro * {
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 20px !important;
                z-index: 1000;
            }

.loginContent .intro img.introPic {
    display: none;
}

.loginPageInner[data-step="1"] .loginContent .intro img.introPic[data-intro="1"] {
    display: flex;
}

.loginPageInner[data-step="2"] .loginContent .intro img.introPic[data-intro="2"] {
    display: flex;
}

.loginPageInner[data-step="3"] .loginContent .intro img.introPic[data-intro="3"] {
    display: flex;
}

.loginPageInner[data-step="4"] .loginContent .intro img.introPic[data-intro="4"] {
    display: flex;
}

.loginPageInner .loginContent .frmLogin {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 15px;
    gap: 10px;
    overflow: auto;
}

.loginPageInner[data-step="4"] .loginContent .frmLogin {
    display: flex;
    z-index: 100000;
    padding: 0 20px;
}

button.nextLogin {
    position: relative;
    border-radius: 50px;
    padding: 0 20px;
    height: 40px;
    border: none !IMPORTANT;
    background: #00a693;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

h1.titleBazarsara {
    position: relative;
    margin: 0 0 10px;
    font-size: 52px;
    color: #00a693;
}

button.nextLogin:hover {
    background: #068f7f;
    color: #fff;
}

.frmLogin .boxInput input {
    position: relative;
    width: 100%;
    height: 60px;
    border-radius: 6px;
    border: 1px solid #777777;
    background-color: #fff !important;
    padding: 0 60px 0 10px;
    direction: ltr;
}

.boxInput {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

strong.titleBold {
    color: #000;
    font-size: 14px;
    margin-bottom: 10px;
}

.inputCustom label.placeHolder {
    position: absolute;
    right: 50px;
    top: 2px;
    height: 56px;
    padding: 0 10px;
    background: #fff;
    display: flex;
    align-items: center;
    z-index: 10;
    transition: all 0.2s;
    color: #000;
    pointer-events: none !important;
}

.inputCustom select {
    position: relative;
    width: 100%;
    height: 60px;
    background-color: #fff;
    border-radius: 6px;
    border: 1px solid #777777;
    background-image: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0 35px 0 10px;
}

.inputCustom input {
    position: relative;
    width: 100%;
    height: 60px;
    border-radius: 6px;
    border: 1px solid #777777;
    background-color: #fff !important;
    padding: 0 60px 0 10px;
    direction: ltr;
}

.inputCustom::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    z-index: 100;
}

.inputCustom input:focus + .placeHolder {
    background: #fff;
    height: 16px;
    top: -8px;
    font-size: 12px;
    right: 10px;
}

.boxInput.has-value .placeHolder,
.inputCustom.has-value .placeHolder,
.inputCustom:focus-within .placeHolder {
    background: #fff;
    height: 16px;
    top: -8px;
    font-size: 13px;
    right: 10px;
    width: auto;
    color: #14b3a4;
    font-weight: 500;
}

.frmLogin .boxInput .checkboxs {
    margin: -10px 0 0 !important;
}

.noteInput {
    position: relative;
    width: 100%;
    font-size: 12px;
    height: 30px;
    text-align: center;
}

h1.titleBazarsara {
    position: relative;
    margin: 0 0 10px;
    font-size: 52px;
    color: #00a693;
}

.boxInput.referralBox input {
    pointer-events: none !important;
}

.boxInput.referralBox.active input {
    pointer-events: auto !important;
}

.boxInput.referralBox label.placeHolder {
    opacity: 0 !important;
    pointer-events: none;
}

.boxInput.referralBox.active label.placeHolder {
    opacity: 1 !important;
}

.terms {
    cursor: pointer;
}

.placeHolder {
    /* pointer-events: none; */
}

.boxInput.referralBox.active input {
    pointer-events: auto;
}

.termsBox {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 10000000;
    display: flex;
    flex-direction: column;
    pointer-events: none !important;
    opacity: 0;
    transition: all 0.5s;
    transform: translateY(-100svh);
}

    .termsBox.open {
        pointer-events: auto !important;
        opacity: 1;
        transform: translateY(0vh);
    }

    .termsBox .contentTerms {
        position: relative;
        width: 100%;
        max-height: calc(100% - 50px);
        overflow-y: scroll;
        font-size: 12px;
        text-align: justify;
        padding: 20px 15px 20px 15px;
    }

    .termsBox .rowBtns {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 0;
    }

        .termsBox .rowBtns button.closeterms {
            font-size: 14px;
            background: none !IMPORTANT;
            border: none !important;
            box-shadow: none !important;
            color: #00a693;
            cursor: pointer;
        }

button.nextOTP {
    position: relative;
    width: 100%;
    display: flex;
    height: 40px;
    justify-content: center;
    align-items: center;
    border: none !important;
    border-radius: 6px;
    background: #00a693;
    cursor: pointer;
}

    button.nextOTP:hover {
        background: #06665b;
        color: #fff;
    }

.contentfrmOTP div#vcode {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 10px 0;
    direction: ltr;
}

    .contentfrmOTP div#vcode input {
        position: relative;
        width: 40px;
        height: 40px;
        border: none !important;
        border-radius: 10px;
        background: #eee;
        text-align: center;
    }

.contentfrmOTP {
    position: relative;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .contentfrmOTP strong.titleform {
        font-size: 14px !important;
    }

.frmOTP {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100svh;
    z-index: 10000000;
    background-color: #fff;
    display: none;
    flex-direction: column;
}

.loginPageInner[data-step="5"] .frmOTP {
    display: flex;
}

.frmOTP .cover {
    position: relative;
    width: 100%;
    display: flex;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

    .frmOTP .cover img {
        width: 100% !important;
        height: 100%;
        object-fit: cover;
        position: absolute;
        left: 0;
        top: 0;
    }

    .frmOTP .cover:before {
        position: relative;
        width: 100%;
        display: block;
        content: '';
        padding-top: 82%;
    }

.noteOTP {
    position: relative;
    font-size: 12px;
    padding: 10px;
}

.timerQuestion {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    padding: 0 0 20px;
    text-align: center;
    flex-wrap: wrap !IMPORTANT;
    justify-content: center;
    gap: 5px;
}

span.resendCode {
    color: #00bef9;
    font-weight: bold;
    cursor: pointer;
}

    span.resendCode:hover {
        color: #0b708f;
        font-weight: bold;
        cursor: pointer;
    }

span.editphonenumber {
    color: rgba(8, 214, 179, 1);
    font-weight: bold;
    cursor: pointer;
}

    span.editphonenumber:hover {
        color: rgb(18, 133, 113);
        font-weight: bold;
        cursor: pointer;
    }

button.signup {
    position: relative;
    border: none !important;
    font-size: 14px !important;
    cursor: pointer;
    background: #00a693;
    color: #fff;
    padding: 0 20px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

    button.signup:hover {
        background: #067064;
        color: #fff;
    }

/*---------------------- checkbox --------------*/
.checkboxs input[type="checkbox"] {
    width: 0 !important;
    height: 0 !important;
}

.checkboxs {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    height: 30px;
    cursor: pointer;
    margin: 5px 0;
}

    .checkboxs input {
        position: absolute;
        right: 0;
        overflow: hidden;
        width: 0;
        height: 0;
        opacity: 0;
    }

    .checkboxs label.lblinput {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0 25px 0 0;
        font-weight: bold;
        align-items: center;
        cursor: pointer;
        font-size: 14px;
        color: #333;
        font-weight: 400;
    }

    .checkboxs input[type=radio] + label.lblinput:before {
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        left: 0;
        width: 16px;
        height: 16px;
        content: '';
        background: #fff;
        border-radius: 100%;
        border: 1px solid #d0d0d0;
        box-shadow: 1px 2px 10px -4px #333;
    }

    .checkboxs input[type=radio] + label.lblinput:after {
        position: absolute;
        top: 0;
        bottom: 0px;
        margin: auto;
        left: 3px;
        width: 12px;
        height: 12px;
        font-family: 'Font Awesome 5 Pro';
        font-weight: 400;
        content: "";
        border-radius: 100%;
        font-size: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #d48644;
        background: radial-gradient(circle, #f3ae75 0%, #d48644 100%);
        transition: all 0.5s cubic-bezier(0.04, 1.13, 0.02, 1.14);
        transform: scale(0) rotate(-90deg);
    }

    .checkboxs input[type=checkbox] + label.lblinput:before {
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        right: 0;
        width: 16px;
        height: 16px;
        content: '';
        background: #fff;
        border-radius: 0px;
        border: 2px solid rgb(71 71 71);
        box-shadow: none;
        border-radius: 2px;
    }

    .checkboxs input[type=checkbox] + label.lblinput:after {
        position: absolute;
        top: 0;
        bottom: 0px;
        margin: auto;
        right: 4px;
        width: 12px;
        height: 12px;
        font-family: 'Font Awesome 5 Pro';
        font-weight: 400;
        content: "";
        border-radius: 0;
        font-size: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #00a693;
        transition: all 0.2s cubic-bezier(0.04, 1.13, 0.02, 1.14);
        transform: scale(0) rotate(-90deg);
        border-radius: 0;
    }

    .checkboxs input:checked + label.lblinput span {
        color: #00a693;
    }

    .checkboxs label.lblinput small {
        position: relative;
        display: block;
        font-size: 12px;
        color: #b3b3b3;
    }

    .checkboxs input:checked + label.lblinput {
        color: #00a693;
    }

        .checkboxs input:checked + label.lblinput:after {
            transform: scale(1) rotate(0deg);
        }

        .checkboxs input:checked + label.lblinput small {
            color: var(--color2);
        }

    .checkboxs label.lblinput span {
        display: flex;
        align-items: center;
        color: rgb(71 71 71);
        font-weight: 700;
        font-size: 12px;
    }

span.color {
    position: relative;
    width: 15px;
    height: 15px;
    display: block;
    border-radius: 3px;
    margin: 0 0 0 5px;
}

/*---------------------- checkbox --------------*/

/* Splash Screen */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.splash-content {
    text-align: center;
}

.splash-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    animation: pulse 1.5s infinite;
}

.splash-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4a90e2;
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

.offline-section {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10000000000000000000000000000;
    background-color: #fff;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.termsBox {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    max-height: 700px;
    overflow-y: auto;
    font-family: 'Tahoma', sans-serif;
}

.contentTerms p {
    margin-bottom: 12px;
    line-height: 1.6;
    text-align: justify;
    font-size: 14px;
}

.contentTerms strong {
    color: #333;
}

/* رسپانسیو برای تبلت */
@media (max-width: 768px) {
    .login-container {
        padding: 1.5rem;
        margin: 1rem;
    }

    .app-header {
        flex-direction: column;
        gap: 1rem;
    }

    .cards {
        grid-template-columns: 1fr;
    }
}





@media only screen and (max-width:680px) {
    .loginPageInner {
        height: auto;
        justify-content: flex-start;
    }

        .loginPageInner .loginContent {
            position: relative;
            width: 100%;
            max-width: 100%;
            border-radius: 0 !important;
            height: 100svh;
        }

            .loginPageInner .loginContent .intro, .loginPageInner .loginContent .intro * {
                border-radius: 0 !important;
            }

            .loginPageInner .loginContent .frmLogin {
                padding: 0 20px;
                border-radius: 0 !important;
            }

    h1.titleBazarsara {
        font-size: 58px;
    }

    .frmOTP .cover {
        border-radius: 0;
    }
}


/* رسپانسیو برای موبایل */
@media (max-width: 480px) {
    .login-container {
        padding: 1rem;
    }

    .user-info, .card, .data-container {
        padding: 1rem;
    }

    .app-main {
        padding: 0.5rem;
    }
}
