body {
  font-family: 'Cairo', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 4vh 5vw;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.form-container {
  background: white;
  padding: 3vh 3vw;
  border-radius: 12px;
  width: 90vw;
  max-width: 450px;
  box-shadow: 0 0 10px #00000033;
}

input, button {
  font-size: 0.8em !important;
}




.overlay {

  position: fixed;

  top: 0;

  left: 0;

  width: 100vw;

  height: 100vh;

  padding: 4vh 5vw;

  background: rgba(0, 0, 0, 0.5);

  z-index: 9998; /* اجعلها أعلى قيمة لضمان الظهور فوق */

}


#circleLoader {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#circleLoader .loader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#circleLoader .loader-content img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  animation: spin 1000s linear infinite;
  margin-bottom: 3px;
}

.spinner-border {
  width: 3rem;
  height: 3rem;
}





