body,
html {
  font-family: sans-serif;
  height: 100%;
  position: relative;
  margin: 0;
  width: 100vw;
  height: 100vh;
}

.img-div {
  display: inline-block;
  transform-origin: top left;
}

.img-div img {
  width: 100%;
}

.outer-div {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 3;
}

.animation-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

}

.outer-div-2 {
  opacity: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f6f7f8;
}

.login-container {
  width: 35%;
  height: 45%;
  z-index: 1;
  background-color: white;
  box-shadow: rgb(0 0 0 / 5%) 0px 1px 8px 3px;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
}

.login-span {
  font-size: 50px;
  font-weight: 700;
}

.select-box {
  width: 12px !important;
  height: 12px !important;
  border: 1px solid rgb(0 0 0) !important;
  border-radius: 4px !important;
  cursor: pointer;
}

.horizontal-blue-line {
  width: 130px;
  height: 0px;
  border: 1px solid #29ABE2;
  border-radius: 10px;
  margin-left: 10px;
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 65%;
}

.form-container div {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.form-container div img {
  width: 15px;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
}

.form-container input {
  border: 1px solid #d1d1d1;
  height: 40px;
  border-radius: 7px;
  padding: 10px;
  box-sizing: border-box;
  width: 100%;
}

.form-container input::placeholder {
  color: #d1d1d1;
}

.remember-me {
  margin-top: 25px;
  display: flex !important;
  flex-direction: row !important;
  gap: 10px;
  font-size: 12px;
}

.remember-me div {
  display: flex;
  flex-direction: row;
  width: fit-content;
}

.remember-me a {
  margin-left: 10px;
  color: #29ABE2;
  cursor: pointer;
}

.login-button {
  background-color: #293646;
  color: white;
  border: none;
}

.guest-login-button {
  color: #293646;
  border: 1px solid #293646;
}

.buttons {
  display: flex !important;
  flex-direction: row !important;
  gap: 20px !important;
}

.buttons button {
  width: 110px;
  cursor: pointer;
  box-sizing: border-box;
  padding: 8px 6px 8px 6px;
  border-radius: 7px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.font-weight {
  font-weight: 700 !important;
}



/*************  SIGN UP ************/

.sign-up {
  z-index: 1;
  position: absolute;
  top: 50px;
  right: 50px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

.sign-up div {
  color: white;
  background-color: #293646;
  font-weight: 600;
  padding: 10px 8px 10px 8px;
  box-sizing: border-box;
  font-size: 12px;
  border-radius: 7px;
  cursor: pointer;
}

.arrow {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 30px;
  cursor: pointer;
}

.sign-up-span {
  font-size: 50px;
  font-weight: 700;
}

/********** FORGOT PASSWORD **************/

.forgot-password-span {
  font-size: 40px;
  font-weight: 700;
}

.blue-alert {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
  color: #293646;
  text-align: center;
}

.red-alert {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
  color: red;
  text-align: center;
}


@media(max-width: 1100px) {

  .login-container {
    width: 50%;
  }
}

@media(max-width: 800px) {

  .login-container {
    width: 60%;
  }
}

@media(max-width: 800px) {

  .login-container {
    width: 80%;
  }
}

@media(max-width: 500px) {

  .login-container {
    width: 80%;
    height: 60%;
    gap: 35px;
  }

  .sign-up {
    position: absolute;
    top: unset;
    bottom: 50px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    height: fit-content;
    justify-content: center;
  }

  .form-container {
    width: 100%;
  }

  .remember-me {
    flex-direction: column-reverse;
    align-items: flex-start;
    margin-top: 0;
  }

  .remember-me a {
    margin-left: 0;
  }

  .remember-me div {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
  }

  .buttons {
    flex-direction: column !important;
  }

  .buttons button {
    box-sizing: unset;
    padding: 10px 10px 10px 10px;
  }
}