@import url("https://use.typekit.net/jrc0ulc.css");

:root {
  --font-family: "montserrat", Arial, sans-serif;
}
* {
  font-family: var(--font-family);
  font-size: 16px;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
form {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
input {
  width: 100%;
  border: 0.5px solid #000;
  border-radius: 0.5rem;
  outline: 2px solid transparent;
  padding: 1rem;
  height: 2.5rem;
  background-color: #fff;
}
input[type="checkbox"] {
  width: 12px;
  height: 12px;
  border: unset;
  outline: unset;
  padding: unset;
}
.formFieldsWrapper {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-bottom: 2rem;
  div:first-child {
    flex: 2 1 0;
  }
  div {
    flex: 1 1 0;
  }
  .submitButton {
    display: unset;
  }
}
.formFieldsWrapper.two-column {
  flex-wrap: wrap;
  div {
    flex-basis: calc(50% - 0.5rem);
  }
}
@media screen and (max-width: 767px) {
  .formFieldsWrapper {
    flex-direction: column;
    .submitButton.mobileSubmit {
      display: none;
    }
  }
}
.submitButton {
  display: block;
  margin: 0 auto;
  border: 1px solid;
  background-color: #fff;
  padding: 0 2rem;
  text-transform: uppercase;
  border-radius: 0rem;
  font-weight: 700;
  cursor: pointer;
  min-width: 180px;
  height: 2.5rem;
}
@media screen and (max-width: 767px) {
  .submitButton {
    width: 100%;
  }
}
.submitButton.mobileSubmit {
  min-width: 0;
}
.submitButton.desktopSubmit {
  display: none;
}
@media screen and (max-width: 767px) {
  .submitButton.desktopSubmit {
    display: block;
  }
}
.checkboxWrapper {
  margin: 0 auto 2rem auto;
  width: fit-content;
}
.checkboxLabelWrapper {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.checkboxText {
  font-size: 0.875rem;
  padding-left: 1rem;
}
.privacyLink {
  font-size: 0.875rem;
  font-weight: 700;
}
.successMessage,
.errorMessage {
  text-align: center;
}
.successMessage {
  margin-top: 2rem;
}
.teamSelectionContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem 0;
}
.teamContainer {
  display: grid;
  grid-template-columns: auto auto;
  gap: 1rem 2.5rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .teamContainer {
    grid-template-columns: auto;
  }
}
label.teamSelectionLabel {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.relative {
  position: relative;
}
.prefix {
  position: absolute;
  height: 100%;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #757575;
}
.prefix + input {
  padding-left: 30px;
}
.error {
  color: #ff9999;
  font-size: 0.75rem;
}
.flex-start {
  align-self: flex-start;
}
img {
  height: 50px;
}
.text-small {
  font-size: 0.75rem;
}
.text-center {
  text-align: center;
}
.mt-8 {
  margin-top: 2rem;
}
.tglSelection {
  grid-column: 1/-1;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .tglSelection {
    margin: unset;
  }
}
.bold {
  font-weight: bold;
}