@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&family=Tajawal:wght@400;700&display=swap');


body {
  font-family: 'cairo', serif;
  background: #f9f9f9;
  margin: 0; padding: 0;
  text-align: center;
}

.hidden { display: none; }

header {
  background: #4a90e2;
  color: #fff;
  padding: 15px;
  display: flex; justify-content: space-between; align-items: center;
}

.login-container {
  margin: 50px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  max-width: 350px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

input, button {
  width: 100%; padding: 10px; margin: 8px 0;
  border-radius: 8px; border: 1px solid #ccc;
  font-size: 18px;
}

button {
  background: #4a90e2; color: #fff; border: none;
  cursor: pointer; transition: 0.3s;
}
button:hover { background: #357ab7; }

/* شاشة التحميل */
#loadingOverlay {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  flex-direction: column;
}

.logo-container {
  position: relative;
  width: 120px;
  height: 120px;
}

.logo-container .logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}

.logo-container .spinner {
  width: 120px;
  height: 120px;
  border: 4px solid #ccc;
  border-top: 4px solid #4a90e2;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

#loadingOverlay p {
  margin-top: 150px;
  font-size: 18px;
  color: #333;
}
#loadingOverlay p span {
  font-weight: bold;
  color: #4a90e2;
}
.logo{
  width: fit-content;
}
.logo img{
  width: 200px;
  height: 200px;
}