:root {
  --font-family-base: "Poppins", sans-serif;
}

body {
  font-family: var(--font-family-base);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.62;
  color: #fff;
  background-color: #0d102d;
}

h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -1.2px;
}

h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.wrapper {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: clip;

  main {
    flex-grow: 1;
  }
}

.container {
  max-width: 1432px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 56px;
}

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

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 210px;
  width: 100%;
  padding: 21px 45px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.42px;
  color: #fff;
  border: 1px solid #ff06b7;
  overflow: hidden;
  border-radius: 10px;
  background-color: transparent;
  cursor: pointer;
  transition: scale 0.3s, background-color 0.3s;

  &:hover {
    scale: 1.03;
    background-color: #ff06b7;

    &.btn-white {
      color: #ff06b7;
      background-color: #fff;
      border-color: #fff;
    }
  }
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

.form-wrapper {
  margin-inline: auto;
}

/* #region MEDIA QUERIES */

@media (width <= 1200px) {
  .container {
    max-width: 100%;
    padding-inline: 98px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 36px;
  }
}

@media (width <= 768px) {
  .container {
    padding-inline: 15px;
  }
}

/* #endregion MEDIA QUERIES */
