/* ================================
   إعداد الخط والخلفية الرئيسية
   ================================ */
:root {
  --background-style: url('IMG-20250611-WA0006.jpg') no-repeat center center fixed;
}

body {
  font-family: 'Cairo', sans-serif;
  margin: 0;
  padding: 0;
  direction: rtl;
  background: var(--background-style);
  background-size: cover;
  color: #333;
}

/* ================================
   الشعار
   ================================ */
.logo {
  max-width: 150px; /* تصغير الشعار */
  height: auto;
  margin-bottom: 15px;
}

/* ================================
   حاوية تسجيل الدخول
   ================================ */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* ================================
   الصندوق الداخلي
   ================================ */
.form-side {
  background-color: rgba(255, 255, 255, 0.863);
  padding: 20px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
  width: 350px;
}

/* ================================
   الأيقونات
   ================================ */
.input-icon {
  position: relative;
}

.input-icon i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
}

/* ================================
   النصوص والعناوين
   ================================ */
.subtitle {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

h2 {
  color: #0056b3;
  margin-bottom: 15px;
  font-size: 22px;
}

/* ================================
   الحقول والنماذج
   ================================ */
.input-group {
  text-align: right;
  margin-bottom: 15px;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #222;
}

.input-group input {
  width: calc(100% - 40px);
  padding: 10px 12px;
  padding-left: 40px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 14px;
  transition: border-color 0.3s ease;
  margin-right: 0;
}

.input-group input:focus {
  border-color: #0056b3;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 86, 179, 0.5);
}

/* ================================
   زر تسجيل الدخول
   ================================ */
.button-link {
  background-color: #0056b3;
  color: #fff;
  border: none;
  padding: 10px 0;
  width: 100%;
  border-radius: 12px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.button-link:hover {
  background-color: #003d7a;
}

/* ================================
   رسالة الخطأ
   ================================ */
.error-message {
  color: #d9534f;
  margin-top: 10px;
  font-size: 14px;
  display: none;
}

/* ================================
   رابط نسيان كلمة المرور
   ================================ */
.forgot-password {
  font-size: 13px;
  margin-top: 15px;
}

/* ================================
   تحسين استجابة التصميم
   ================================ */
@media (max-width: 600px) {
  .form-side {
    width: 90%;
    padding: 20px;
  }

  h2 {
    font-size: 20px;
  }

  .subtitle {
    font-size: 16px;
  }

  .input-group input {
    font-size: 16px;
  }
}