.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

body {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

h1 {
  text-align: center;
}

#emailInputLogin {
  background-image: url(./assets/img/icons/mail.png);
  background-repeat: no-repeat;
  background-position: center right 21px;
}

.password-input-and-eye-icon {
  position: relative;
  max-width: 466px;
  width: 90%;
}

#passwordInputLogin {
  background-repeat: no-repeat;
  background-position: center right 21px;
  width: calc(100% - 42px) !important;
}

#iconVisibilityPassword {
  position: absolute;
  top: calc(50% - 10px);
  right: 21px;
}

#iconVisibilityPassword:hover {
  cursor: pointer;
}

.header {
  height: 10vh;
}

.log-in-body {
  background-color: white;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px 0;
  box-shadow: 0 0 14px 3px rgba(0, 0, 0, 0.04);
  max-width: 652px;
  width: calc(100% - 32px);
}

.inputs-login {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.inputs-login input {
  max-width: 422px;
  width: calc(90% - 42px);
  height: 24px;
  padding: 12px 21px;
  font-size: 20px;
  border: 1px solid #d1d1d1;
  border-radius: 10px;
}

.inputs-login input:focus {
  outline: 2px solid #29abe2;
  border: 1px solid transparent;
}

.checkbox-remember {
  display: flex;
  gap: 8px;
  padding-left: 28px;
}

.checkbox-remember input:hover {
  cursor: pointer;
}

.btns-login {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.sign-up {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.sign-up span {
  font-size: 20px;
}

#signUpSectionDesktop {
  display: none;
}

.legal-footer {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding-bottom: 12px;
}

.legal-footer a {
  color: #a8a8a8;
}

#msgBox {
  width: 260px;
  position: absolute;
  top: 8px;
  left: calc(50% - 130px);
  transition: all 1s ease-in-out;
  z-index: 999;
}

#logInFeedback {
  width: 230px;
  position: absolute;
  top: 8px;
  left: calc(50% - 115px);
  transition: all 1s ease-in-out;
  font-size: 12px;
  z-index: 999;
  color: red !important;
  border: 2px solid red !important;
}

/* ////////////////////////////////////////////// ANIMATION SECTION ///////////////////////////////////////////////// */

#loadAnimation {
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #2a3647;
  position: absolute;
  transition: opacity 1s ease-in-out;
}

#logInHeaderLogo {
  position: absolute;
  animation: loading 1s ease-in-out;
  z-index: 9;
  top: 4%;
  left: 10%;
  width: 40px;
}

.loader-hidden {
  opacity: 0;
}

@keyframes loading {
  from {
    top: calc(50% - 40px);
    left: calc(50% - 32px);
    height: 129px;
    width: 105px;
    filter: brightness(0) invert(1);
  }

  to {
    top: 4%;
    left: 10%;
    height: 49.375px;
    width: 40px;
    filter: brightness(1) invert(0);
  }
}

.hide-animation {
  transform: translateY(-100px);
}

/* ////////////////////////////////////////////// RESPONSIVE ///////////////////////////////////////////////// */

@media (min-width: 445px) {
  .checkbox-remember {
    padding-left: calc(50% - 80px);
  }
}

@media (min-width: 992px) {
  #logInHeaderLogo {
    width: 64px;
    height: 79px;
  }

  #signUpSectionMobile {
    display: none;
  }

  #signUpSectionDesktop {
    display: flex;
    position: absolute;
    right: 10%;
    top: 4%;
    height: 79px;
  }

  #msgBox {
    width: 400px;
    left: calc(50% - 200px);
  }

  @keyframes loading {
    from {
      top: calc(50% - 40px);
      left: calc(50% - 32px);
      height: 129px;
      width: 105px;
      filter: brightness(0) invert(1);
    }

    to {
      top: 4%;
      left: 10%;
      height: 79px;
      width: 64px;
      filter: brightness(1) invert(0);
    }
  }
}

@media (max-height: 700px) {
  .log-in-body {
    padding: 8px 0 16px 0;
  }
}
