.callback-form .ajaxcontent {
  max-width: 480px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column; /* чтобы все шло вертикально */
  gap: 12px;
}

.callback-form .form-control {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  max-width: 400px;
  box-sizing: border-box;
}

.callback-form .pers {
  margin-top: 15px;
  text-align: left;
  font-size: 14px;
}

.button-wrapper {
  margin-top: 15px; /* кнопка ниже чекбокса */
  width: 100%;
  display: flex;
  justify-content: center;
}

.callback-form .button {
  padding: 12px 20px;
  font-size: 16px;
  border: none;
  background: #007bff;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  max-width: 400px;
}

.callback-form .button:hover {
  background: #0069d9;
}

.send-button-wrapper {
    margin-top: 15px; /* отступ от чекбокса */
    text-align: center; /* центрируем кнопку */
}

.send-button {
    display: inline-block;
    padding: 10px 30px;
    font-size: 16px;
    background: #ff2241; /* красная кнопка */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

