.h2 {
      font-size: 22px;
}

.div-image-question {
      display: flex;
      justify-content: center;
}

.image-question {
      width: 250px;
      margin: 1px auto;
}

form {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 80px;
      margin-top: 50px;
}

.form-response {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 60px;
}

/* Input radio */
.response {
      border: 3px solid #000dff;
      border-radius: 10px;
      width: 100%;
      min-height: 60px;
}

.response input[type="radio"] {
      display: none;
}

.response label {
      display: flex;
      flex-direction: column-reverse;
      align-items: center;
      gap: 30px;
      cursor: pointer;
      padding: 15px;
      transition: 0.5s ease;
}

.response label img {
      min-width: 50px;
      max-width: 100%;
      min-height: 120px;
      max-height: 145px;
      transition: transform 0.3s, box-shadow 0.3s;
}

.response input[type="radio"]:checked + label {
      border-color: #007bff;
      background-color: var(--blue-main);
      box-shadow: 0 0 10px rgba(100, 149, 237, 0.6);
}

.response input[type="radio"]:checked + label img {
      transform: scale(1.05);
}

/* Input number */
.champ-limbe {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
}

.champ-limbe input[type="number"] {
      padding: 15px;
      border: 2px solid #6495ed;
      border-radius: 10px;
      margin-bottom: 40px;
      width: 200px;
      font-size: 18px;
}

.button-secondary {
      border: 3px solid #000dff;
      border-radius: 10px;
      background-color: var(--blue-main);
      padding: 10px;
}

@media (min-width: 700px) {
      .h2 {
            font-size: 30px;
            text-align: center;
      }

      .champ-limbe input[type="number"] {
            width: 300px;
            font-size: 24px;
      }
}

@media (min-width: 1000px) {
      form {
            margin-top: 100px;
      }

      .form-response {
            align-items: center;
      }

      /* Input radio */
      .response,
      .button-secondary {
            width: 45%;
      }

      .response label img {
            max-width: 90%;
      }
}

@media (min-width: 1300px) {
      .form-response {
            width: 100%;
            gap: 90px;
      }
}

@media (min-width: 2000px) {
      .form-response {
            gap: 100px;
      }

      .response,
      .button-secondary {
            width: 550px;
      }
}
