/* ============================
   🌟 التصميم العام (Cairo RTL)
============================ */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');

body {
  font-family: "Cairo", sans-serif;
  direction: rtl;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
  color: #222;
  /* 🎨 خلفية متدرجة متحركة */
  background: linear-gradient(120deg, #c7d2fe, #dbeafe, #eff6ff, #e0f2fe, #bfdbfe);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
}

/* حركة الخلفية */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ============================
   📋 العناوين والنصوص
============================ */
h1, h2, h3 {
  color: #1e3a8a;
  font-weight: 700;
}

label {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: #1e40af;
}

/* ============================
   🧾 حقول الإدخال
============================ */
input, select, textarea {
  width: 100%;
  padding: 8px 10px;
  margin-top: 5px;
  box-sizing: border-box;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 6px rgba(59, 130, 246, 0.3);
  outline: none;
}

/* ============================
   🧭 الأزرار
============================ */
button {
  margin-top: 15px;
  padding: 10px 18px;
  cursor: pointer;
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
  background-color: #1d4ed8;
  transform: scale(1.03);
}

button:active {
  transform: scale(0.98);
}

/* ============================
   ⚠️ الرسائل والتنبيهات
============================ */
.alert {
  background: #fff7ed;
  border: 1px solid #fdba74;
  color: #b45309;
  padding: 10px 15px;
  margin: 10px 0;
  border-radius: 8px;
}

/* ============================
   🧩 خطوات التسجيل (Wizard)
============================ */
.step {
  background: #ffffff;
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-3px);
}

/* ============================
   📊 شريط التقدم (Progress)
============================ */
.progress-bar {
  width: 100%;
  background: #e5e7eb;
  height: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.progress {
  height: 10px;
  background: linear-gradient(to right, #2563eb, #60a5fa);
  width: 0;
  border-radius: 5px;
  transition: width 0.4s ease-in-out;
}

/* ============================
   ✅ رسالة التحقق (حمراء/خضراء)
============================ */
.status-message {
  transition: all 0.4s ease;
  opacity: 0;
  font-size: 0.9rem;
  margin-top: 4px;
}

.status-message.visible {
  opacity: 1;
}

.status-message.error {
  color: #dc2626;
}

.status-message.success {
  color: #16a34a;
}
