@font-face {
  font-family: "Atyp Display";
  src: url("../fonts/AtypDisplay-Light.eot");
  src: local("Atyp Display Light"), local("AtypDisplay-Light"), url("../fonts/AtypDisplay-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/AtypDisplay-Light.woff2") format("woff2"), url("../fonts/AtypDisplay-Light.woff") format("woff"), url("../fonts/AtypDisplay-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Atyp Display";
  src: url("../fonts/AtypDisplay-Regular.eot");
  src: local("Atyp Display"), local("AtypDisplay-Regular"), url("../fonts/AtypDisplay-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/AtypDisplay-Regular.woff2") format("woff2"), url("../fonts/AtypDisplay-Regular.woff") format("woff"), url("../fonts/AtypDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Atyp Display";
  src: url("../fonts/AtypDisplay-Semibold.eot");
  src: local("Atyp Display Semibold"), local("AtypDisplay-Semibold"), url("../fonts/AtypDisplay-Semibold.eot?#iefix") format("embedded-opentype"), url("../fonts/AtypDisplay-Semibold.woff2") format("woff2"), url("../fonts/AtypDisplay-Semibold.woff") format("woff"), url("../fonts/AtypDisplay-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Atyp Display";
  src: url("../fonts/AtypDisplay-Bold.eot");
  src: local("Atyp Display Bold"), local("AtypDisplay-Bold"), url("../fonts/AtypDisplay-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/AtypDisplay-Bold.woff2") format("woff2"), url("../fonts/AtypDisplay-Bold.woff") format("woff"), url("../fonts/AtypDisplay-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
:root {
  --color-primary: #cefd54;
  --color-dark: #121212;
  --font-family: "Atyp Display";
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --line-height-base: 1.5;
  --line-height-heading: 1.2;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-family), sans-serif;
  font-size: 16px;
  line-height: var(--line-height-base);
  color: #000;
}

.onboarding__media {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 240px;
  padding: 24px;
  background: url("../img/cta.jpg") top center;
  background-size: cover;
}
.onboarding__media::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 70%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.onboarding__media-inner {
  position: relative;
  z-index: 1;
}
.onboarding__title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-heading);
  text-transform: uppercase;
  color: #fff;
}
.onboarding__subtitle {
  margin: 0;
  font-size: 32px;
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-heading);
  text-transform: uppercase;
  color: #fff;
}
.onboarding__island {
  background-color: #fff;
}
.onboarding__island-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 40px;
  min-height: 100%;
  padding: 32px;
}
.onboarding__logo {
  display: block;
}
.onboarding__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  row-gap: 16px;
  width: 100%;
}
.onboarding--success .onboarding__form {
  display: none;
}
.onboarding__success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  row-gap: 40px;
  font-size: 24px;
  font-weight: var(--font-weight-light);
  text-align: center;
}
.onboarding--success .onboarding__success {
  display: flex;
}
@media (min-width: 1024px) {
  .onboarding {
    display: flex;
    height: 100vh;
    overflow: hidden;
  }
  .onboarding__media {
    flex-grow: 1;
    padding: 80px;
  }
  .onboarding__title {
    margin-bottom: 48px;
    font-size: 48px;
  }
  .onboarding__subtitle {
    font-size: 96px;
  }
  .onboarding__island {
    flex-shrink: 0;
    width: 40%;
    overflow-y: auto;
  }
}
@media (min-width: 1280px) {
  .onboarding__island {
    width: 30%;
  }
  .onboarding__island-inner {
    padding: 40px;
  }
}

.field {
  position: relative;
}
.field__input {
  width: 100%;
  padding: 25px 15px 9px;
  font: inherit;
  font-size: 14px;
  line-height: 20px;
  border-radius: 4px;
  border: 1px solid #eee;
  outline: 0;
}
.field__input:hover:not(:focus):not(.field__input--error) {
  border-color: #ccc;
}
.field__input:focus {
  border-color: var(--color-dark);
}
.field__input::placeholder {
  opacity: 0;
}
.field__input--error {
  border-color: #e82f2f;
}
.field__label {
  position: absolute;
  top: 18px;
  left: 16px;
  font-size: 14px;
  line-height: 20px;
  color: #999;
  transition: top 0.15s, font-size 0.15s, color 0.15s;
  cursor: text;
}
.field__input:focus + .field__label, .field__input:not(:placeholder-shown) + .field__label {
  top: 8px;
  font-size: 12px;
}

.select {
  position: relative;
}
.select__input {
  background: no-repeat right 16px center url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.00182 9.98288C7.91293 9.98288 7.8296 9.96899 7.75182 9.94121C7.67405 9.91343 7.60182 9.86621 7.53516 9.79954L4.46849 6.73288C4.34627 6.61066 4.28516 6.4551 4.28516 6.26621C4.28516 6.07732 4.34627 5.92177 4.46849 5.79954C4.59071 5.67732 4.74627 5.61621 4.93516 5.61621C5.12405 5.61621 5.2796 5.67732 5.40182 5.79954L8.00182 8.39954L10.6018 5.79954C10.724 5.67732 10.8796 5.61621 11.0685 5.61621C11.2574 5.61621 11.4129 5.67732 11.5352 5.79954C11.6574 5.92177 11.7185 6.07732 11.7185 6.26621C11.7185 6.4551 11.6574 6.61066 11.5352 6.73288L8.46849 9.79954C8.40182 9.86621 8.3296 9.91343 8.25182 9.94121C8.17405 9.96899 8.09071 9.98288 8.00182 9.98288Z' fill='black'/%3E%3C/svg%3E%0A");
  cursor: pointer;
}
.select__label {
  cursor: pointer;
}
.select__dropdown {
  position: absolute;
  z-index: 1;
  display: none;
  width: 100%;
  margin-top: 4px;
  padding: 8px 0;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
.select--open .select__dropdown {
  display: block;
}
.select__btn {
  display: block;
  width: 100%;
  padding: 8px 16px;
  font: inherit;
  text-align: left;
  background: 0;
  border: 0;
  cursor: pointer;
}
.select__btn:hover:not(.select__btn--selected) {
  background-color: #f5f5f5;
}
.select__btn--selected {
  background-color: var(--color-primary);
}

.btn {
  display: block;
  height: 48px;
  margin-top: 8px;
  padding: 0;
  font: inherit;
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  line-height: 48px;
  text-decoration: none;
  color: #fff;
  background-color: var(--color-dark);
  border: 0;
  border-radius: 24px;
  transition: color 0.15s, background-color 0.15s;
  cursor: pointer;
  outline: 0;
}
.btn:hover {
  color: #000;
  background-color: var(--color-primary);
}

/*# sourceMappingURL=onboarding.css.map */
