/* media queries */
@media (max-width: 1000px) {
  .logo {
    margin-top: 37px;
    height: 78px;
    width: 64px;
    margin-left: 38px;
  }

  .signup-form {
    margin-top: 90px;
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media (max-width: 700px) {
  .login-form-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .form-container {
    width: 100%;
    align-items: center;
  }

  .input-wrapper {
    width: 100%;
    justify-content: center;
  }

  .input-img {
    right: 100px;
  }

  .error-message {
    left: unset;
  }
}

@media (max-width: 650px) {
  .btn-container {
    flex-direction: column;
    gap: 20px;
  }

  .login-form {
    width: 100%;
  }

  .login-form-container {
    height: fit-content;
    margin-top: 80px;
  }

  .signup-form-container form {
    width: 100%;
    align-items: center;
  }

  .signup-form-container input {
    width: 80%;
  }

  .login-form {
    height: fit-content;
    padding-bottom: 40px;
    padding-top: 40px;
  }

  .header div {
    position: absolute;
    bottom: 100px;
    display: flex;
    align-items: center;
    width: 100%;
    left: 0;
    justify-content: center;
  }

  .header img {
    top: 37px;
    left: 38px;
    height: 78px;
    width: 64px;
  }

  .header {
    padding-left: 38px;
  }

  .arrow-left {
    margin-right: 0;
    left: 60px;
  }

  .input-wrapper {
    width: 80%;
  }

  .input-img {
    right: 20px;
  }

  .input-img-signup {
    right: 50px;
  }
}

@media (max-width: 450px) {
  .arrow-left {
    left: 25px;
    top: 210px;
  }

  .signup-btn button {
    width: 180px;
    height: 48px;
  }

  #checkbox-container-signup span:last-of-type {
    margin-left: 50px;
  }

  #checkbox-container-signup img {
    margin-left: -180px;
  }

  .input-img-signup {
    right: 20px;
  }

  .signup-form-container input {
    padding-left: unset;
  }

  .form-failed-container img {
    height: auto;
    width: 250px;
    margin-top: 580px;
  }
}

@media (max-width: 380px) {
  .header button {
    margin-left: 10px;
  }
}

/* keyframes */
@keyframes fadeInForm {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes logoAnimation {
  0% {
    top: 30%;
    left: 40%;
    width: 274px;
    height: 334px;
  }
  50% {
    top: 30%;
    left: 40%;
    width: 274px;
    height: 334px;
  }
  100% {
    top: 60px;
    left: 77px;
    width: 100px;
    height: 120px;
  }
}

@keyframes buttonAnimation {
  0% {
    transform: translateY(100vh);
  }
  100% {
    transform: translateY(0);
  }
}

@media screen and (max-width: 650px) {
  @keyframes logoAnimation {
    0% {
      top: 30%;
      left: 40%;
      width: 200px;
      height: 244px;
    }
    100% {
      top: 37px;
      left: 38px;
      width: 64px;
      height: 78px;
    }
  }
}

@media screen and (max-width: 450px) {
  @keyframes logoAnimation {
    0% {
      top: 30%;
      left: 30%;
      width: 200px;
      height: 244px;
    }
    100% {
      top: 37px;
      left: 38px;
      width: 64px;
      height: 78px;
    }
  }
}

@media screen and (max-width: 350px) {
  @keyframes logoAnimation {
    0% {
      top: 30%;
      left: 20%;
      width: 200px;
      height: 244px;
    }
    100% {
      top: 37px;
      left: 38px;
      width: 64px;
      height: 78px;
    }
  }
}

@media (max-height: 915px) {
  .login-form {
    padding-top: unset;
  }

  .signup-form {
    margin-top: 10px;
  }

  .footer-signup {
    margin-top: 30px;
  }

  .arrow-left {
    top: 150px;
  }
}

@media (max-height: 740px) {
  .login-form {
    padding-top: 0;
  }

  .header button {
    position: absolute;
    top: -480px;
    right: 10px;
  }

  .header span {
    position: absolute;
    top: -520px;
    right: 10px;
  }

  .login-form {
    padding-bottom: 5px;
    margin-top: -10px;
  }

  .footer {
    bottom: 10px;
  }

  .signup-form {
    margin-top: 5px;
    height: fit-content;
    padding-bottom: 10px;
  }

  .signup-header {
    margin-top: 20px;
  }

  .arrow-left {
    top: 150px;
  }

  .form-container-signup {
    gap: 5px;
  }
}
