/* Login */
/* Main Css */
body {
  font-size: 1em;
  font-family: "Cairo", sans-serif;
}
.wrapper {
  padding: 20px 0;
  background-image: url("../../images/login_bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100%;
  min-height: calc(
    100vh - 20px
  ); /* Adjust height based on footer and content height */
  overflow-y: auto; /* Enable content scrolling if necessary */
}

.wrapper .logo img {
  max-width: 35%;
  padding-top: 15px;
  margin-bottom: 5px;
}

.wrapper input {
  background-color: var(--light-white);
  border-color: var(--light-white);
  color: var(--gray);
}

.wrapper input:focus {
  box-shadow: none;
}

.wrapper .submit-btn {
  padding: 15px;
  font-weight: 500;
}

.wrapper .submit-btn:focus {
  box-shadow: none;
}

.wrapper button {
  background-color: #4f5362;
  border-color: #4f5362;
  color: white;
  transition: background-color 0.3s, border-color 0.3s;
}

.wrapper button:hover {
  background-color: #5e6278;
  border-color: #5e6278;
  color: white;
}

/* Button Active State (Clicked State) */
.wrapper button:active {
  background-color: #4f5362 !important;
  border-color: #4f5362 !important;
  color: white !important;
}

form i {
  margin-right: 15px;
  margin-top: -35px;
  cursor: pointer;
  float: right;
}

.Fo {
  background-color: #4f5362;
  color: white;
  margin-top: 20px;
  padding: 10px 20px; /* Adjust padding as needed */
  bottom: 0;
  position: fixed;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.Fo a {
  text-decoration: none;
  color: #e30612 !important;
}

.Fo img {
  width: 40px !important;
  height: auto !important;
}

.Fo a:hover {
  text-decoration: none;
  color: #e30612 !important;
}

@media (max-width: 582px) {
  .Fo {
    margin-top: 85px !important;
  }
}
@media (max-width: 767px) {
  .wrapper {
    padding: 40px 0 80px;
    min-height: calc(
      100vh - 140px
    ); /* Adjust height based on footer and content height */
  }

  .wrapper .logo img {
    max-width: 50%;
  }
}
