* {
  box-sizing: border-box;
}

html {
  font-size: 8px;
}

body {
  background-color: #fbfbff;
  margin: 0;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
    "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.landing-page-wrapper {
  width: 100%;

  display: flex;
  flex-direction: column;
}

.landing-page-wrapper {
  display: flex;
}

.landing-page_column {
  flex: 50%;
  height: 100vh;
  padding: 5rem 2.5rem;
}

.landing-page_right {
  background-color: rgba(240, 243, 247, 1);
}

/* Right */
.landing-right-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  padding-bottom: 3rem;
  flex-direction: column;
  /* justify-content: flex-end; */
}

.landing-subheading {
  color: rgba(40, 40, 96, 1);
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.landing-heading {
  color: rgba(40, 40, 96, 1);
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-size: 4rem;
  line-height: 4.5rem;
  margin-bottom: 3.5rem;
  text-align: center;
}

.landing-button-group {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 1.5rem;
}

/* Left */

.landing-left-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.landing-left-logo {
  height: 50px;
}

.landing-left-img-wrapper {
  width: 100%;
  height: calc(100% - 100px);
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.landing-left-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.landing-left-copyright {
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-family: Poppins;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.1rem;
  color: #62618a;
}

/* Button */

.landing-button-wrapper {
  background: #fcf4e2;
  height: 4rem;
  border: 1px solid #9493ae;
  border-radius: 5rem;
  display: flex;
  align-items: center;
  padding: 1.25rem 2rem;
  cursor: pointer;
}

.landing-button-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  gap: 1.25rem;
}

.landing-button-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.landing-button-text,
.landing-button-icon {
  font-family: "Poppins";
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 600;
  color: rgba(40, 40, 96, 0.7);
}

@media screen and (min-width: 6400px) {
  html {
    font-size: 12px;
  }
}

@media screen and (min-width: 1024px) {
  html {
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .landing-page-wrapper {
    flex-direction: row;
  }
  .landing-right-wrapper {
    justify-content: flex-end;
    align-items: flex-start;
  }
  .landing-subheading,
  .landing-heading {
    text-align: left;
  }
  .landing-button-group {
    flex-direction: row;
    gap: 3.5rem;
  }
  .landing-left-wrapper {
    display: block;
  }
  .landing-left-img-wrapper {
    max-width: unset;
  }
}
