@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Vazirmatn", sans-serif;
}

body {
  overflow: hidden;
  background: #0f0f1a;
  color: #fff;
}

.bg-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #5b21b6, #9333ea, #7e22ce, #6d28d9);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  z-index: -1;
  filter: blur(60px);
  opacity: 0.7;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


.container {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  padding: 40px;
  gap: 40px;
}

.right-side {
  flex: 1;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(147,51,234,0.3);
}

.right-side h3 {
  color: #c084fc;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.right-side label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  outline: none;
}

button {
  width: 100%;
  margin-top: 20px;
  padding: 12px;
  background: linear-gradient(90deg, #9333ea, #7e22ce);
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
}

button:hover {
  opacity: 0.9;
}

.left-side {
  flex: 1;
  text-align: center;
}

.left-side h1 {
  font-size: 2.2rem;
  color: #ddd6fe;
}

.left-side p {
  margin-top: 10px;
  color: #c4b5fd;
}

/* 📱 ریسپانسیو */
@media (max-width: 900px) {
  .container {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .right-side, .left-side {
    width: 100%;
  }
}
