* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Readex Pro", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "HEXP" 0;
  color: #000000;
  line-height: 1.5;
  font-size: 16px;
}

@media (min-width: 768px) {
  body {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  body {
    font-size: 18px;
  }
}
.proto {
  margin: 50px 20px;
}

.proto .bloc-title h1 {
  font-weight: 700;
  text-align: center;
  font-size: 28px;
  line-height: 28px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .proto {
    margin: 50px;
  }
  .proto .bloc-title h1 {
    font-size: 38px;
    line-height: 38px;
    margin-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  .proto {
    margin: 100px;
  }
  .proto .bloc-title h1 {
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 100px;
  }
}
.progress-container {
  background: #e9e9e9;
  border-radius: 20px;
  height: 15px;
  margin: 20px 0;
  overflow: hidden;
  margin-bottom: 30px;
}

.progress-bar {
  height: 100%;
  background-color: #4400ba;
  width: 0%;
  transition: width 0.3s ease-in-out;
}

form {
  border-radius: 50px;
  background: #fff;
  box-shadow: 0 0 120px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (min-width: 768px) {
  form {
    padding: 50px;
  }
}
@media (min-width: 1200px) {
  form {
    padding: 70px;
  }
}
h2 {
  text-align: center;
  font-size: 18px;
  line-height: 18px;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  h2 {
    font-size: 28px;
    line-height: 28px;
    margin-bottom: 38px;
  }
}
@media (min-width: 1200px) {
  h2 {
    font-size: 38px;
    line-height: 38px;
    margin-bottom: 48px;
  }
}
.last-step h2 {
  margin: 0;
}

.center-button {
  display: flex;
  justify-content: center;
}

.center-flex-button {
  display: flex;
  justify-content: space-between;
  margin-top: 56px;
}

@media (min-width: 768px) {
  .center-flex-button {
    margin-top: 76px;
  }
}
@media (min-width: 1200px) {
  .center-flex-button {
    margin-top: 96px;
  }
}
form button {
  cursor: pointer;
  border: 1px solid #4400ba;
  color: #000000;
  background-color: transparent;
  border-radius: 18px;
  padding: 15px 25px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  transition: all 0.15s ease-in-out;
}

form button:hover {
  background-color: #4400ba;
  color: #fff;
}

@media (min-width: 768px) {
  form button {
    font-size: 20px;
    line-height: 20px;
    padding: 20px 40px;
  }
}
@media (min-width: 1200px) {
  form button {
    padding: 25px 50px;
  }
}
.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.label-flex {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.label {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.champ {
  border-radius: 18px;
  border: 1px solid #000;
  padding: 15px 25px;
  font-size: 14px;
}

@media (min-width: 768px) {
  .champ {
    padding: 20px 40px;
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .champ {
    padding: 25px 50px 25px 18px;
  }
}
.toggle-group {
  border: none;
}

#recap-content {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

strong {
  font-size: 18px;
  font-weight: 700;
}

@media (min-width: 768px) {
  strong {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  strong {
    font-size: 32px;
  }
}
input.error,
select.error {
  border: 2px solid red;
  background-color: #ffe6e6;
}

.toggle-group label.error {
  outline: 2px solid red;
  border-radius: 6px;
  background-color: #ffe5e5;
}

.toggle-group {
  display: flex;
  gap: 1rem;
}

.toggle-group label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  background-color: transparent;
  border-radius: 18px;
  border: 1px solid #000;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-weight: bold;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.toggle-group label:hover {
  background-color: #111;
  color: white;
}

.toggle-group input[type=radio] {
  display: none;
}

.toggle-group {
  display: flex;
  gap: 9px;
}

.toggle-group label {
  display: inline-block;
}

.toggle-group label span {
  display: inline-block;
  padding: 15px 25px;
  background-color: transparent;
  border-radius: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .toggle-group label span {
    padding: 20px 40px;
  }
}
@media (min-width: 1200px) {
  .toggle-group label span {
    padding: 25px 50px;
  }
}
.toggle-group label:hover {
  background-color: #111;
  color: white;
}

.toggle-group input[type=radio] {
  display: none;
}

.toggle-group input[type=radio]:checked + span {
  background-color: #111;
  color: white;
}

fieldset legend {
  margin-bottom: 9px;
}/*# sourceMappingURL=style.css.map */