/* تنظیمات کلی صفحه */
@font-face {
    font-family: yekan;
    src: url(./src/yekan.ttf);
  }
  
  /* تنظیمات کلی صفحه */
  body {
  
      font-family: 'Yekan', Arial, sans-serif;
      background-color: #f8f9fa;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      color: #333;
  }
  p{
       font-family: 'Yekan', Arial, sans-serif;
  }
  /* کانتینر فرم */
  .form-box {
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      padding: 30px 20px;
      width: 100%;
      max-width: 400px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
  }
  
  /* عنوان فرم */
  .form-container h2 {
      margin-bottom: 20px;
      font-size: 24px;
      color: #444;
      font-family: 'Yekan', sans-serif;
      text-align: center;
  }
  
  /* لیبل */
  label {
      width: 100%;
      text-align: right;
      margin-bottom: 5px;
      font-size: 14px;
      color: #555;
  }
  
  /* فیلد ورودی */
  input[type="text"] {
    direction: rtl;
      width: 350px;
      padding: 12px;
      margin-bottom: 20px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 16px;
      outline: none;
      font-family: 'Yekan', Arial, sans-serif;
      transition: border-color 0.3s, box-shadow 0.3s;
  }
  
  input[type="text"]:focus {
      border-color: #007bff;
      box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
  }
  
  
  
  /* دکمه ارسال */
  button[type="submit"] {
      width: 150px;
      background-color: #007bff;
      color: #fff;
      border: none;
      border-radius: 5px;
      padding: 12px;
      font-size: 16px;
      font-family: 'Yekan', Arial, sans-serif;
      cursor: pointer;
      transition: background-color 0.3s;
  }
  
  button[type="submit"]:hover {
      background-color: #0056b3;
  }
  
  /* ریسپانسیو کردن فرم برای موبایل */
  @media (max-width: 500px) {
      .form-container {
          padding: 20px;
      }
  }
  