body {
  font-family: "Cairo", sans-serif;
  height: 100vh;
  background: linear-gradient(135deg, #ff6b6b, #ffdcdc, #ffffff, #ffe7e7);
  background-size: 200% 200%;
  animation: bgMove 10s infinite alternate;
}
/* ================= LOGIN ONLY ================= */

.login-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #ff6b6b, #ffdcdc, #ffffff, #ffe7e7);
}

.login-page .login-container {
  width: 420px;
  padding: 40px;
  background: #ffffffcc;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
}

.login-page .logo {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 10px;
}
.login-page .logo span:first-child {
  color: #cc0000;
}
.login-page .logo span:last-child {
  color: #ff8800;
}

.login-page .title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
}

.login-page .input-box {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ccc;
}
.login-page .input-box:focus {
  border-color: #c70d0d;
  box-shadow: 0 0 8px rgba(199, 13, 13, 0.3);
}

.login-page .btn-login {
  background: #c70d0d;
  color: white;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  transition: 0.2s;
}
.login-page .btn-login:hover {
  background: #900;
  transform: translateY(-3px);
}

.login-page .error-box {
  background: #ffb4b4;
  padding: 10px;
  border-radius: 10px;
  color: #900;
  text-align: center;
  font-weight: 600;
  margin-bottom: 15px;
}
a.bulid {
  display: block;
  text-decoration: none;
  margin-top: 30px;
  width: 200px;
  /* background: #900; */
  /* color: #fff; */
  /* padding: 20px; */
}
a.bulid:hover {
  color: #900 !important; /* يمنع التحول للأحمر */
  text-decoration: none !important;
  background: none !important;
}
/* 🔥 تابلت */
@media (max-width: 992px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 🔥 موبايل */
@media (max-width: 576px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}
