
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Vazirmatn", sans-serif;
    }

    body {
      min-height: 100vh;
      background: radial-gradient(circle at center, #0a0c5c 0%, #0a0c5c 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      overflow: hidden;
    }

    .login-card {
      width: 90%;
      max-width: 400px;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 20px;
      padding: 3rem 2rem;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
      text-align: center;
      animation: fadeInUp 1s ease forwards;
      transform: translateY(20px);
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .login-card h1 {
      font-size: 2rem;
      margin-bottom: 2rem;
      color: #e3b8ff;
      text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    }

    .form-group {
      margin-bottom: 1.5rem;
      text-align: right;
    }

    label {
      display: block;
      margin-bottom: 0.5rem;
      font-size: 0.95rem;
      color: #d1c4e9;
    }

    input, select {
      width: 100%;
      padding: 0.75rem 1rem;
      border-radius: 12px;
      border: none;
      outline: none;
      background: rgba(255, 255, 255, 0.15);
      color: #fff;
      font-size: 1rem;
      transition: all 0.4s ease;
      backdrop-filter: blur(4px);
    }

    input::placeholder {
      color: rgba(255,255,255,0.6);
    }

    input:focus, select:focus {
      background: rgba(255, 255, 255, 0.25);
      box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.5);
    }

    button {
      width: 100%;
      padding: 0.85rem 1rem;
      background: linear-gradient(135deg, #d1340b, #a855f7);
      color: #fff;
      font-size: 1.05rem;
      font-weight: 600;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
    }

    button:hover {
      transform: translateY(-3px) scale(1.02);
      background: linear-gradient(135deg, #9333ea, #c084fc);
      box-shadow: 0 6px 16px rgba(168, 85, 247, 0.5);
    }

    .footer-links {
      text-align: center;
      margin-top: 20px;
      font-family: Byekan;
      color: #ddd;
      line-height: 1.6;
    }

    .footer-links h2 a {
      color: #e3b8ff;
      text-decoration: none;
    }

    .footer-links p a {
      color: #ccc;
      text-decoration: none;
      margin: 0 5px;
    }

    .footer-links p.related a {
      color: #bbb;
    }

    footer {
      margin-top: 10px;
      font-size: 0.85rem;
      color: #b9b9b9;
      text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    }

    @media (max-width: 480px) {
      .login-card {
        padding: 2rem 1.5rem;
      }
      .login-card h1 {
        font-size: 1.7rem;
      }
      input, select {
        font-size: 0.95rem;
      }
      button {
        font-size: 1rem;
      }
    }
.seo-links {
  position: absolute; 
  height: 0;
  width: 0;
  overflow: hidden;
}

