body,
html {
  margin: 0;
  padding: 0;
  background-color: #f5f7fa;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-y: hidden;
}

.container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  width: 100vw;
  background: #f5f7fa;
  border-radius: 8px;
  place-items: center;
}

.content {
  width: fit-content;
  height: fit-content;
  border-radius: 12px;
  border: 1px solid rgba(27, 31, 35, 0.15);
  box-shadow: rgba(27, 31, 35, 0.04) 0 1px 0,
    rgba(255, 255, 255, 0.25) 0 1px 0 inset;
  place-items: center;
  background-color: white;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.input-group {
  position: relative;
}

.lgppl {
  width: 26%;
}

.img-footer {
  width: 30%;
  padding-top:60px;

}

@media screen and (max-width: 1400px) {
  .lgppl {
    width: 40%;
  }
  .img-footer {
    width: 50%;
    padding-top:60px;
  }
}

@media screen and (max-width: 1200px) {
  .lgppl {
    width: 54%;
  }
  .img-footer {
    width: 70%;
    padding-top:60px;
  }
}

@media screen and (max-width: 750px) {
  .lgppl {
    width: 70%;
  }
  .img-footer {
    width: 90%;
    padding-top:0px;
  }

  .content {
    width: fit-content;
    height: fit-content;
    border-radius: 12px;
    border: 1px solid rgba(27, 31, 35, 0);
    box-shadow: rgba(27, 31, 35, 0) 0 1px 0,
      rgba(255, 255, 255, 0) 0 1px 0 inset;
    place-items: center;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 0px;
    padding-bottom: 20px;
  }
}
