@font-face {
	font-family:'IRANSans-web';
	src:url('fonts/IRANSansWeb(FaNum)_Bold.eot');
	src:url('fonts/IRANSansWeb(FaNum)_Bold.woff') format('woff'),
	url('fonts/IRANSansWeb(FaNum)_Bold.ttf') format('truetype'),
	url('fonts/IRANSansWeb(FaNum)_Bold.svg#IRANSans-web') format('svg'),
	url('fonts/IRANSansWeb(FaNum)_Bold.woff2') format('woff2'),
	url('fonts/IRANSansWeb(FaNum)_Bold.eot?#iefix') format('embedded-opentype');
	font-weight: bold;
}
@font-face {
	font-family:'IRANSans-web';
	src:url('fonts/IRANSansWeb(FaNum)_Light.eot');
	src:url('fonts/IRANSansWeb(FaNum)_Light.woff') format('woff'),
	url('fonts/IRANSansWeb(FaNum)_Light.ttf') format('truetype'),
	url('fonts/IRANSansWeb(FaNum)_Light.svg#IRANSans-web') format('svg'),
	url('fonts/IRANSansWeb(FaNum)_Light.woff2') format('woff2'),
	url('fonts/IRANSansWeb(FaNum)_Light.eot?#iefix') format('embedded-opentype');
	font-weight: 200;
}
@font-face {
	font-family:'IRANSans-web';
	src:url('fonts/IRANSansWeb(FaNum).eot');
	src:url('fonts/IRANSansWeb(FaNum).woff') format('woff'),
	url('fonts/IRANSansWeb(FaNum).ttf') format('truetype'),
	url('fonts/IRANSansWeb(FaNum).svg#IRANSans-web') format('svg'),
	url('fonts/IRANSansWeb(FaNum).woff2') format('woff2'),
	url('fonts/IRANSansWeb(FaNum).eot?#iefix') format('embedded-opentype');
	font-weight: normal;
}

@font-face {
	font-family: 'outline-icons';
	src: url("themes/default/assets/fonts/outline-icons.eot");
	src: url("themes/default/assets/fonts/outline-icons.eot?#iefix") format('embedded-opentype'), url("themes/default/assets/fonts/outline-icons.woff2") format('woff2'), url("themes/default/assets/fonts/outline-icons.woff") format('woff'), url("themes/default/assets/fonts/outline-icons.ttf") format('truetype'), url("themes/default/assets/fonts/outline-icons.svg#icons") format('svg');
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-decoration: inherit;
	text-transform: none;
}
@font-face {
	font-family: 'Icons';
	src: url("themes/default/assets/fonts/icons.eot");
	src: url("themes/default/assets/fonts/icons.eot?#iefix") format('embedded-opentype'), url("themes/default/assets/fonts/icons.woff2") format('woff2'), url("themes/default/assets/fonts/icons.woff") format('woff'), url("themes/default/assets/fonts/icons.ttf") format('truetype'), url("themes/default/assets/fonts/icons.svg#icons") format('svg');
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-decoration: inherit;
	text-transform: none;
}

.hide {
    display: none !important
}

.child {
    background-color: rgba(0, 0, 0, .07)
}


* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
    -moz-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}

i.icon.star.outline:before {
    content: "\f634";
}

i.icon.list.alternate.outline:before {
    content: "\f022";
}

.jconfirm-content > div {
    padding-bottom: 10px !important
}


[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'stepfont' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-size: 35px;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    color: #F2711C;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-1:before {
    content: "\e901";
}

.icon-2:before {
    content: "\e9020";
}

.icon-3:before {
    content: "\e903";
}

.icon-4:before {
    content: "\e904";
}

.icon-5:before {
    content: "\e905";
}

.icon-6:before {
    content: "\e906";
}


html {
    position: relative;
    height: 100%;
    width: 100%;
    direction: rtl;
}

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'IRANSans-web';
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            direction: rtl;
        }

        .login-container {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            max-width: 450px;
            width: 100%;
            backdrop-filter: blur(10px);
            animation: slideUp 0.5s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .login-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 40px 30px;
            text-align: center;
            color: white;
        }

        .login-header h1 {
            font-size: 24px;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .login-header p {
            font-size: 14px;
            opacity: 0.9;
            line-height: 1.6;
        }

        .login-body {
            padding: 40px 30px;
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #333;
            font-size: 14px;
            font-weight: 500;
        }

        .input-wrapper {
            position: relative;
        }

        .input-wrapper i {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #667eea;
            font-size: 18px;
        }

        .form-control {
            width: 100%;
            padding: 14px 45px 14px 15px;
            border: 2px solid #e1e8ed;
            border-radius: 10px;
            font-size: 15px;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }

        .form-control:focus {
            outline: none;
            border-color: #667eea;
            background: white;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
        }

        .btn-login {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .btn-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }

        .btn-login:active {
            transform: translateY(0);
        }

        .login-footer {
            text-align: center;
            padding: 20px 30px 30px;
        }

        .login-footer a {
            color: #667eea;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .login-footer a:hover {
            color: #764ba2;
            text-decoration: underline;
        }

        /* Icon styles */
        .icon {
            display: inline-block;
            width: 20px;
            height: 20px;
        }

        .icon-user::before {
            content: "👤";
        }

        .icon-lock::before {
            content: "🔒";
        }

        @media (max-width: 480px) {
            .login-container {
                border-radius: 15px;
            }

            .login-header {
                padding: 30px 20px;
            }

            .login-header h1 {
                font-size: 20px;
            }

            .login-body {
                padding: 30px 20px;
            }
        }