body {
  margin: 0;
  padding: 0;
  font-family: "Tajawal", sans-serif;
  background: linear-gradient(135deg, #ffffff, #f1f3f6);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  color: #333;
}

.container {
  max-width: 600px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1.5s ease-in-out;
}

.logo {
  width: 220px; /* حجم الشعار */
  max-width: 100%;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #0a4275;
}

p {
  font-size: 1.2rem;
  color: #555;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.7rem;
  }
  p {
    font-size: 1rem;
  }
  .logo {
    width: 160px;
  }
}
