@font-face {
    font-family: 'YekanBakhBold';
    src: url('../css/fonts/YekanBakh-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'YekanBakhBlack';
    src: url('../css/fonts/YekanBakh-Black.ttf') format('truetype');
    font-style: normal;
  }
  
  @font-face {
    font-family: 'YekanBakhSemiBold';
    src: url('../css/fonts/YekanBakh-SemiBold.ttf') format('truetype');
    font-style: normal;
  }
  
  @font-face {
    font-family: 'YekanBakhRegular';
    src: url('../css/fonts/YekanBakh-Regular.ttf') format('truetype');
    font-style: normal;
  }
  
  @font-face {
    font-family: 'YekanBakhLight';
    src: url('../css/fonts/YekanBakh-Light.ttf') format('truetype');
    font-style: normal;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    
    background-color: #0f0715;

}


        body {
            font-family: 'YekanBakhBold';
            background-color: #0f0715;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 110vh;
        }

        .container {
            width: 90%;
            max-width: 800px;
            background-color: #f5f5f5;
            border-radius: 15px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            padding: 20px;
            text-align: center;
        }

        h1 {
            color: #45277b;
            font-size: 24px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 15px;
            text-align: right;
            font-size: 18px;
            color: #45277b;
            display: flex;
            align-items: center;
        }

        .form-group input[type="checkbox"] {
            width: 30px; /* سایز بزرگ‌تر برای چک‌باکس‌ها */
            height: 30px;
            margin-left: 10px;
        }

        .input-field {
            width: 100%;
            padding: 10px;
            margin-bottom: 10px;
            border-radius: 8px;
            border: 2px solid #45277b;
            font-size: 16px;
            font-family: 'YekanBakhBold';
            text-align: right;
            box-sizing: border-box;
        }

        .textarea-field {
            width: 100%;
            padding: 10px;
            margin-bottom: 10px;
            border-radius: 8px;
            border: 2px solid #45277b;
            font-size: 16px;
            font-family: 'YekanBakhBold';
            text-align: right;
            box-sizing: border-box;
            height: 100px; 
            resize: none;
        }

        .btn {
            font-family: 'YekanBakhBold';
            text-align: center;
            width: 30%;
            padding: 10px;
            background-color: #45277b;
            color: white;
            font-size: 18px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            margin-top: 15px;
        }

        .btn:hover {
            background-color: #0f0715;
        }.logo {
            
            top: 10px; /* فاصله از بالا */
            right: 10px; /* فاصله از راست */
          }
          
          .logo img {
            height: 100px;
            width: 100px;
          }
      

        @media (max-width: 600px) {
            h1 {
                font-size: 20px;
            }

            .btn {
                font-size: 16px;
            }

            .form-group {
                font-size: 16px;
            }

            .input-field, .textarea-field {
                font-size: 14px;
            }
            
            
        }
    