@font-face {
  font-family: 'IranSans';
  src: url('../fonts/woff2/IRANSansWeb.woff2') format('woff2');
  src: url('../fonts/woff/IRANSansWeb.woff') format('woff');
  src: url('../fonts/ttf/IRANSansWeb.ttf') format('ttf');
  src: url('../fonts/eot/IRANSansWeb.eot') format('eot');
  font-weight: normal;
  font-style: normal;
}

body {
            font-family: 'IranSans', 'Vazir', sans-serif;
            direction: rtl;
            background-color: #ffffff; /* سفید */
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            color: #3E4E5E; /* خاکستری تیره */
            overflow: hidden;
        }

        .login-container {
            background-color: #ffffff;
            padding: 40px 50px;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            width: 360px;
            text-align: center;
        }

        .company-logo{
            max-width: 100px;
            height: auto;
            display: block;
            margin: 0 auto 5px auto;
        }

        .logo-placeholder {
            width: 120px;
            height: 60px;
            background-color: #E8F1FA; /* آبی روشن */
            border-radius: 5px;
            margin: 0 auto 30px auto;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 0.9em;
            color: #1E7BBE; /* آبی اصلی */
            font-weight: bold;
        }

        .login-container h2 {
            margin-bottom: 30px;
            color: #1E7BBE; /* آبی اصلی */
        }

        .input-group {
            margin-bottom: 20px;
            text-align: right;
        }

        .input-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
        }

        .input-group input {
            width: calc(100% - 24px); /* محاسبه عرض با در نظر گرفتن padding */
            padding: 12px;
            border: 1px solid #E8F1FA; /* آبی روشن برای حاشیه */
            border-radius: 5px;
            font-size: 1em;
            transition: border-color 0.3s, box-shadow 0.3s;
            font-family: 'IranSans', 'Vazir', sans-serif;
        }

        .input-group input:focus {
            border-color: #1E7BBE; /* آبی اصلی */
            box-shadow: 0 0 0 3px rgba(30, 123, 190, 0.2); /* سایه ملایم آبی */
            outline: none;
        }

        .login-button {
            width: 100%;
            padding: 12px 20px;
            background: linear-gradient(to right, #1E7BBE, #3E4E5E); /* گرادینت ملایم */
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1.1em;
            cursor: pointer;
            transition: background 0.3s, box-shadow 0.3s;
            font-weight: bold;
            font-family: 'IranSans', 'Vazir', sans-serif;
        }

        .login-button:hover {
            background: linear-gradient(to right, #3E4E5E, #1E7BBE); /* تغییر گرادینت در هاور */
            box-shadow: 0 4px 15px rgba(30, 123, 190, 0.4); /* سایه بیشتر در هاور */
        }
        
        .copy-right{
            margin-top: 15px;
        }