/* [project]/src/app/inscription/page.module.css [app-client] (css) */
.page-module__QWR0uW__container {
  background-color: #fff;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: Inter, -apple-system, sans-serif;
  display: flex;
}

.page-module__QWR0uW__formWrapper {
  background: #fff;
  width: 100%;
  max-width: 1000px;
  padding: 60px 40px;
  animation: .6s ease-out page-module__QWR0uW__slideIn;
}

@keyframes page-module__QWR0uW__slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-module__QWR0uW__header {
  text-align: center;
  margin-bottom: 60px;
}

.page-module__QWR0uW__logo {
  margin-bottom: 30px;
}

.page-module__QWR0uW__header h1 {
  color: #111;
  letter-spacing: -1px;
  margin-bottom: 15px;
  font-size: 2.8rem;
  font-weight: 900;
}

.page-module__QWR0uW__header p {
  color: #555;
  font-size: 1.2rem;
}

.page-module__QWR0uW__stepper {
  border-bottom: 1px solid #f0f0f0;
  justify-content: center;
  gap: 60px;
  margin-bottom: 60px;
  padding-bottom: 30px;
  display: flex;
}

.page-module__QWR0uW__step {
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  font-weight: 600;
  display: flex;
}

.page-module__QWR0uW__stepIconWrapper {
  background-color: #f5f5f5;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: all .3s;
  display: flex;
}

.page-module__QWR0uW__stepActive {
  color: #c00;
}

.page-module__QWR0uW__stepActive .page-module__QWR0uW__stepIconWrapper {
  color: #fff;
  background-color: #c00;
  box-shadow: 0 4px 15px #c003;
}

.page-module__QWR0uW__stepCompleted {
  color: #f1c40f;
}

.page-module__QWR0uW__stepCompleted .page-module__QWR0uW__stepIconWrapper {
  color: #333;
  background-color: #f1c40f;
}

.page-module__QWR0uW__formContent {
  width: 100%;
}

@keyframes page-module__QWR0uW__slideFadeIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.page-module__QWR0uW__stepContainer {
  width: 100%;
  animation: .5s ease-out both page-module__QWR0uW__slideFadeIn;
}

.page-module__QWR0uW__stepTitle {
  color: #111;
  text-align: left;
  margin-bottom: 40px;
  font-size: 2rem;
  font-weight: 800;
}

.page-module__QWR0uW__row {
  margin-bottom: 0;
  display: block;
}

.page-module__QWR0uW__inputGroup {
  width: 100%;
  margin-bottom: 35px;
}

.page-module__QWR0uW__inputGroup label {
  color: #333;
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 700;
  display: block;
}

.page-module__QWR0uW__required {
  color: #c00;
  margin-left: 4px;
}

.page-module__QWR0uW__inputIcon {
  width: 100%;
  position: relative;
}

.page-module__QWR0uW__inputIcon svg {
  color: #777;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.page-module__QWR0uW__inputIcon input, .page-module__QWR0uW__inputIcon select, .page-module__QWR0uW__inputGroup input, .page-module__QWR0uW__textarea {
  box-sizing: border-box;
  background-color: #f9f9f9;
  border: 1.5px solid #eee;
  border-radius: 12px;
  width: 100%;
  padding: 18px 25px 18px 55px;
  font-size: 1.1rem;
  transition: all .2s;
}

.page-module__QWR0uW__textarea {
  min-height: 150px;
  padding-left: 25px;
}

.page-module__QWR0uW__inputIcon input:focus, .page-module__QWR0uW__textarea:focus {
  background-color: #fff;
  border-color: #c00;
  outline: none;
  box-shadow: 0 0 0 4px #cc00000d;
}

.page-module__QWR0uW__tshirtSelector {
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 15px;
  display: grid;
}

.page-module__QWR0uW__sizeButton {
  cursor: pointer;
  background: #f9f9f9;
  border: 1.5px solid #eee;
  border-radius: 12px;
  padding: 15px;
  font-weight: 700;
  transition: all .2s;
}

.page-module__QWR0uW__sizeActive {
  color: #fff;
  background-color: #c00;
  border-color: #c00;
  transform: scale(1.05);
}

.page-module__QWR0uW__pills {
  flex-wrap: wrap;
  gap: 12px;
  display: flex;
}

.page-module__QWR0uW__pill {
  cursor: pointer;
  background-color: #f9f9f9;
  border: 1.5px solid #eee;
  border-radius: 30px;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-weight: 600;
  transition: all .2s;
  display: flex;
}

.page-module__QWR0uW__pillActive {
  color: #333;
  background-color: #f1c40f;
  border-color: #f1c40f;
}

.page-module__QWR0uW__footer {
  border-top: 1px solid #f0f0f0;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 40px;
  display: flex;
}

.page-module__QWR0uW__nextButton, .page-module__QWR0uW__submitButton {
  color: #fff;
  cursor: pointer;
  background-color: #c00;
  border: none;
  border-radius: 15px;
  align-items: center;
  gap: 12px;
  padding: 18px 45px;
  font-size: 1.1rem;
  font-weight: 800;
  transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
  display: flex;
}

.page-module__QWR0uW__nextButton:hover, .page-module__QWR0uW__submitButton:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px #cc000040;
}

.page-module__QWR0uW__backButton {
  color: #888;
  cursor: pointer;
  background: none;
  border: none;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  display: flex;
}

.page-module__QWR0uW__errorAlert {
  color: #e11d48;
  background-color: #fff1f2;
  border: 1px solid #fda4af;
  border-radius: 15px;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  padding: 20px;
  font-weight: 600;
  display: flex;
}

.page-module__QWR0uW__conditions {
  background-color: #fafafa;
  border-radius: 20px;
  margin-top: 40px;
  padding: 30px;
}

.page-module__QWR0uW__checkbox {
  cursor: pointer;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.6;
  display: flex;
}

.page-module__QWR0uW__checkbox input {
  accent-color: #c00;
  width: 22px;
  height: 22px;
  margin-top: 3px;
}

@media (max-width: 900px) {
  .page-module__QWR0uW__formWrapper {
    padding: 30px 20px;
  }

  .page-module__QWR0uW__stepper {
    justify-content: flex-start;
    gap: 20px;
    padding-left: 20px;
    overflow-x: auto;
  }

  .page-module__QWR0uW__step span {
    display: none;
  }

  .page-module__QWR0uW__header h1 {
    font-size: 2rem;
  }
}

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