/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
.s-join-form {
  max-width: 40rem;
  margin: 0 auto;
  padding: 0 2rem 8rem;
  display: grid;
  gap: 1rem;
}
.s-join-form h2 {
  font-size: 3rem;
  font-weight: 300;
  font-variation-settings: "wght" 300;
  margin: 0 0 1rem;
}
.s-join-form label,
.s-join-form legend {
  font-size: 2.25rem;
  font-weight: 300;
  font-variation-settings: "wght" 300;
  letter-spacing: 0;
  text-transform: none;
}
@media screen and (max-width: 1039px) {
  .s-join-form label,
  .s-join-form legend {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 639px) {
  .s-join-form label,
  .s-join-form legend {
    font-size: 1.5rem;
  }
}
.s-join-form fieldset label {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.s-join-form input,
.s-join-form textarea {
  border: 0;
  border-bottom: 1px solid #000;
  padding: 0.5rem 0;
  font: inherit;
  font-size: 1.25rem;
  font-weight: 300;
  font-variation-settings: "wght" 300;
  width: 100%;
  background: transparent;
}
.s-join-form button {
  justify-self: start;
  background: none;
  color: inherit;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 1.5rem;
  font-weight: 300;
  font-variation-settings: "wght" 300;
  cursor: pointer;
  text-decoration: underline;
}