body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 2rem;
  color: #252525;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  background-image: url("assets/img/landing-bg.jpg");
  background-color: #f6f6f2;
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  box-sizing: border-box;

}

@supports (min-height: 100lvh) {
    body {
        min-height: 100lvh
    }
}

.container {
  width: 43%;
  max-width: 750px;
}

.wrapper {
  padding: 15% 13% 11% 13%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  box-sizing: border-box;
}

.wrapper-logo {
  width: 59%;
  height: auto;
}

.wrapper-title {
  margin-top: 3.5rem;
  margin-bottom: 0;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.wrapper-subtitle {
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

@media (max-width: 767px) {
  .container {
    width: 100%;
  }

  .wrapper {
    padding: 15% 10% 11% 10%;
  }

  .wrapper-logo {
    width: 65%;
    max-width: 190px;
  }

  .wrapper-title {
    margin-top: 2rem;
    font-size: 2rem;
  }

  .wrapper-subtitle {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .container {
    width: 80%;
  }

  .wrapper {
    padding: 14% 10% 12% 10%;
  }

  .wrapper-logo {
    width: 55%;
  }

  .wrapper-title {
    margin-top: 3rem;
    font-size: 3.25rem;
  }

  .wrapper-subtitle {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1499px) {
  .wrapper-logo {
    width: 50%;
  }

  .wrapper-title {
    margin-top: 3rem;
    font-size: 3rem;
  }

  .wrapper-subtitle {
    font-size: 1.25rem;
  }
}
