/* تنظیمات کلی */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tahoma', sans-serif;
    direction: rtl;
    background: #f3fefa;
    color: #333;
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
  }
  
  /* هدر */
  header {
    text-align: center;
    margin-bottom: 30px;
  }
  
  header h1 {
    color: #008060;
  }
  
  /* چینش بخش اصلی به صورت دو ستونه */
  .content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
  }
  
  /* تنظیمات فرم ثبت نام */
  .form-section {
    flex: 1;
    min-width: 350px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .form-section img {
    width: 100%;
    border-radius: 10px;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  input, select {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
  }
  
  button {
    padding: 14px;
    background: #00b37e;
    color: white;
    border: none;
    cursor: pointer;
  }
  
  button:hover {
    background: #41d6b6;
  opacity: 0.8;
  }
  
  /* تنظیمات تب‌ها */
  .tabs-section {
    flex: 1;
    min-width: 350px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    
  }
  
  .tabs {
    display: flex;
    background: #e8f5e9;
    border-radius: 25px;
    padding: 5px;
    width: fit-content;
    margin-bottom: 15px;
    
  }
  
  .tab-button {
    padding: 10px 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    color: #2e7d32;
    
    border-radius: 10px;
    
  }
  
  .tab-button.active {
    background-color: white;
    font-weight: bold;
    color: #1b5e20;
    border-radius: 10px;
  }
  
  .tab-content {
    display: none;
  }
  
  .tab-content.active {
    display: block;
  }
  
  /* فوتر */
  footer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
  }
  
  footer a {
    text-decoration: none;
    font-size: 24px;
    color: #008060;
    transition: transform 0.3s;
  }
  
  footer a:hover {
    transform: scale(1.2);
  }
  
  /* ریسپانسیو */
  @media (max-width: 768px) {
    .content {
      flex-direction: column;
      align-items: flex-start; /* یا center در صورت نیاز */
    }
  }

  .container2 {
    position: relative;
    width: 100%;
    height: 100%;
  }  
      .pen,
      .arc,
      .text {
        position: absolute;
      }
      .pen img,
      .arc img,
      .text img {
        
         width: 100%; 
        }
      .pen {
       
        z-index: 2;
        left: 30px;
        top: 30px;
        width: 60px;
      }
      .arc {
        left: 0;
        top: 126px; /*150*/
        width: 96px; /*120*/
        opacity: 0;
        position: absolute;
        z-index: 1;
      }
      .text {
        left: 0;
        top: 72px;
        width: 60px;
        opacity: 0;
      }
      .logo-wrapper {
        width: 240px; /* مقدار مشخص */
        height: 120px; /* مقدار مشخص */
        overflow: hidden; /* جلوگیری از خروج عناصر */
        display: flex;
        align-items: center;
        justify-content: center;
      }
         
      .register-links {
  text-align: center;
  margin-top: 20px;
}

.register-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #2A86FE;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  transition: background-color 0.3s;
}


.register-links p {
  margin: 10px 0;
  font-size: 16px;
}


.register-links a:hover {
  text-decoration: underline;
}
