#home-banner {
  background-image: url("../../Images/Home-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* modidfied by shimaa*/
  display: flex;
  /* modidfied by shimaa*/
  flex-direction: column;
  /* modidfied by shimaa*/
  align-items: center;
}

#home-banner .logo {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  box-shadow: 0px 0px 10px 2px #ffffff;
}

input {
  font-size: 14px;
}

input:focus {
  outline: none;
  box-shadow: 0 0 5px #719ece;
  border: 1px solid #719ece;
}

label.error {
  font-size: 12px;
  color: red;
  padding-left: 10px;
}

label.error::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f06a";
  color: red;
  font-size: 12px;
  margin-right: 5px;
}

input.error {
  border: 2px solid red !important;
}

@media screen and (max-width: 768px) {
  #home-banner {
    background-image: url("../../images/Home-bg-tab.webp");
    /* modidfied by shimaa*/
    flex-direction: row;
  }
}

@media screen and (max-width: 426px) {
  #home-banner {
    background-image: url("../../images/Home-bg-mobile.webp");
    /* modidfied by shimaa*/
    flex-direction: row;
  }
}

/* added by shimaa:Default font size for small screens (mobile) */
body {
  font-size: 12px;
}


/* added by shimaa:Font size for medium screens (tablets) */
@media (min-width: 400px) {
  body {
    font-size: 14px;
  }
}

/* added by shimaa:Font size for large screens (desktops) */
@media (min-width: 992px) {
  body {
    font-size: 16px;
  }
}

/* added by shimaa:default form size and alignment  */
form {
  display: flex;
  /* Use Flexbox for horizontal layout */
  flex-direction: column;
  /* Stack the divs vertically by default */
  align-items: center;
  /* Center the items */
  max-width: 100%;
  /* Full width of the screen */
  margin: auto;
  /* Center the container */

}

/* added by shimaa:Font size for large screens (desktops) */
@media (min-width: 576px) {
  form {
    flex-direction: row;

  }
}