body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #b924de, #33ec68, #2da6da);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    direction: ltr;
    text-align:left ;
  }


@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.login-container {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  width: 90%;
  max-width: 400px;
  color: white;
  direction: ltr;
  text-align: left;
}

.login-container h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 28px;
}

label {
  display: block;
  direction:rtl;
  text-align:left;
  margin-bottom: 8px;
  font-weight: 500;
}


input:placeholder {
  color: #ddd;
}

button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

button:hover {
  transform: scale(1.05);
}

a {
  display: block;
  text-align: center;
  margin-top: 15px;
  color: #aad6ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

#signup {
    width: 350px;
    padding: 40px;
    background-color:rgba(0, 0, 0, 0.7);
    box-shadow: 0px 4px 8px rgb(74, 204, 243);
    border-radius: 8%;    
    direction:ltr;
}
#singin{
    width: 350px;
    padding: 40px;
    background-color:rgba(0, 0, 0, 0.7);
    box-shadow: 0px 4px 8px rgb(74, 204, 243);
    border-radius: 8%;    
    direction: ltr;
}

form h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #45fb45;
}

form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: aqua;
    direction: ltr;
    text-align: left;
}

form input {
    direction:ltr;
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #e4a2a2;
    border-radius: 4%;
    
}

form button {
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

form button:hover {
    background-color: #45a049;
}


#home {
    height: 90px;
    display: flex;
    justify-content: space-evenly;
    position: fixed; /* تثبيت الزر في مكانه */
    top: 02px; /* المسافة من الأعلى */
    left: 50%; /* وضع الزر في منتصف العرض الأفقي */
    transform: translateX(-50%); /* إزاحة الزر إلى اليسار بنسبة 50% من عرضه لتوسيطه */
    font-family: Arial, sans-serif; /* خط النص */
    font-size: 16px; /* حجم النص */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* إضافة ظل */
    z-index: 1000; /* التأكد من أن الزر يظهر فوق العناصر الأخرى */
    background-color: rgba(221, 139, 16, 0.6);
    border-radius: 15px;
    padding: 10px;
}

#home:hover {
    background-color: #0056b3; /* تغيير لون الخلفية عند التمرير */
    background-image: linear-gradient(to right, rgba(325,225,0,0), rgba(255, 37, 37, 0.658));
    background-size: cover;
    background-position: center;
    height: 100px;
    border-radius: 35%;
}
#larbi {
    height: 40px;
    top: 02px; /* المسافة من الأعلى */
    left: 50%; /* وضع الزر في منتصف العرض الأفقي */
    transform: translateX(-50%); /* إزاحة الزر إلى اليسار بنسبة 50% من عرضه لتوسيطه */
    font-family: Arial, sans-serif; /* خط النص */
    color: #45fb45;
    font-size: 20px; /* حجم النص */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* إضافة ظل */
    z-index: 1000; /* التأكد من أن الزر يظهر فوق العناصر الأخرى */
    background-color: rgba(221, 139, 16, 0.6);
    border-radius: 15px;
    padding: 10px;
} 
#p {
    height: 22px;
    color: #f3cfcf;
    font-size: 20px; /* حجم النص */
    background-color: rgba(86, 80, 71, 0.6);
    direction: ltr;
    padding: 10px;

}

