@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
*,
body,
html {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  position: absolute;
  width: 100vw;
  min-height: 100vh;
  height: -moz-fit-content;
  height: fit-content;
}
.container section {
  height: -moz-fit-content;
  height: fit-content;
  width: 80vw;
  left: 10vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: relative;
  margin-bottom: 2em;
}
.container section h1 {
  font-size: 3em;
  font-weight: 600;
  margin-bottom: 0.5em;
}
.container section h2 {
  font-size: 2em;
  font-weight: 400;
  margin-bottom: 0.5em;
}
.container section p {
  font-size: 1em;
  font-weight: 300;
  max-width: 80%;
  text-align: center;
}
.container section #policy {
  width: 90%;
  display: flex !important;
}
@media (max-width: 768px) {
  .container section .payment-container {
    min-width: 100%;
  }
  .container section .amount input {
    width: 80%;
  }
  .container section h1 {
    font-size: 2em;
  }
  .container section h2 {
    font-size: 1.5em;
  }
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #fff;
  display: flex;
  gap: 2em;
  align-items: center;
  justify-content: center;
}/*# sourceMappingURL=policy.css.map */