.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: #fff;
  font-family: Pt Mono, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.2;
}

.section_form {
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  display: flex;
  position: relative;
}

.button {
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0;
  padding: 1rem 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.button.is-primary {
  color: #131313;
  background-color: #e1715e;
}

.button.is-primary.is-form-submit {
  color: #e1715e;
  background-color: #131313;
  border: 1px solid #e1715e;
  width: 100%;
  transition: background-color .3s, color .3s;
}

.button.is-primary.is-form-submit:hover {
  color: #131313;
  background-color: #e1715e;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.page-wrapper {
  background-color: #0000;
  position: relative;
}

.padding-global {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.padding-global.padding-section-large {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section_layout {
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background-color: #131313bf;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.cta_image {
  aspect-ratio: 1;
  object-fit: cover;
  width: 50%;
}

.cta_form-wrapper {
  aspect-ratio: 1;
  object-fit: cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  padding: 4rem 6rem;
  display: flex;
}

.cta_form {
  width: 100%;
}

.shadow {
  box-shadow: 0 8px 10px -6px #0000001a, 0 20px 25px -5px #0000001a;
}

.text-color-accent {
  color: #e1715e;
}

.cta_text-wrapper {
  margin-bottom: 3rem;
}

.cta_text-wrapper.is-linktree {
  width: 100%;
}

.form_field {
  text-align: center;
  background-color: #141414;
  border: 1px solid #4f4f4f;
  border-radius: 0;
  min-height: 3rem;
  margin-bottom: 0;
  padding: .5rem .75rem;
  transition: border-color .3s;
}

.form_field:hover {
  border-color: #e1715e;
}

.form_field:focus {
  outline-offset: 0px;
  border-color: #e1715e;
  outline: 0 #e1715e;
}

.form {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  display: flex;
}

.form_success {
  text-align: left;
  background-color: #0000;
  padding: 2.5rem 0;
}

.animated-bg {
  z-index: auto;
}

.form_error {
  color: #e1715e;
  text-align: center;
  background-color: #0000;
  margin-top: .25rem;
  padding: .5rem 1rem;
}

.links-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.icon-embed-xsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.social-link {
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

.social-links_wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  place-items: start;
  margin-top: 3rem;
  display: flex;
}

.linktree-wrapper {
  aspect-ratio: 1;
  object-fit: cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  padding: 4rem 6rem;
  display: flex;
}

.form_success-message {
  font-size: 1rem;
}

@media screen and (max-width: 991px) {
  .section_form {
    height: auto;
  }

  .padding-global.padding-section-large {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .section_layout {
    flex-flow: column;
  }

  .cta_image {
    order: -1;
    width: 100%;
  }

  .cta_form-wrapper {
    aspect-ratio: auto;
    width: 100%;
    padding: 3rem;
  }

  .cta_text-wrapper {
    margin-bottom: 2rem;
  }

  .linktree-wrapper {
    aspect-ratio: auto;
    width: 100%;
    padding: 3rem;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }

  .padding-global {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .padding-global.padding-section-large {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .social-links_wrapper {
    margin-top: 3rem;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    margin-bottom: .5rem;
    font-size: 1.75rem;
  }

  .padding-global.padding-section-large {
    padding: .5rem;
  }

  .cta_form-wrapper {
    padding: 1rem;
  }

  .social-links_wrapper {
    margin-top: 2rem;
  }

  .linktree-wrapper {
    padding: 3rem 1rem;
  }
}


@font-face {
  font-family: 'Pt Mono';
  src: url('../fonts/pt-mono.zip') format('undefined');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pt Mono';
  src: url('../fonts/PTM55F.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}