.container-form {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.container {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 20px 0;
  align-items: flex-start;
}

/* Форма */
.form-container {
  background: linear-gradient(135deg, #FFF8E7, #FFECD1);
  padding: 30px;
  border: 2px solid #FFD700;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 350px;
  font-family: "Poppins", Arial, sans-serif;
  box-sizing: border-box;
}

.form-container h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #FFD700;
}

.form-group {
  margin-bottom: 20px;
}

input[type="text"],
input[type="tel"] {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 2px solid #FFD700;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

input:focus {
  border-color: #FFA500;
  box-shadow: 0 0 5px rgba(255, 165, 0, 0.5);
}

.submit-btn {
  width: 92%;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #3B2F2F;
  background: linear-gradient(135deg, #FFD700, #F4A261);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #FFA500, #FF8C00);
  color: #fff;
}

.small-text {
  font-size: 10px;
  color: #8B6D5C;
  line-height: 1.4;
  margin-top: 10px;
}

/* Текст справа */
.info-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  font-size: 24px;
  color: #3B2F2F;
  font-family: "Poppins", Arial, sans-serif;
}

.info-block strong {
  font-size: 30px;
  display: block;
  margin-bottom: 6px;
  font-family: "Poppins", Arial, sans-serif;
  color: #FFD700;
}

.divider {
  height: 2px;
  background: #FFD700;
  margin: 15px 0;
  width: 100%;
  max-width: 550px;
  border-radius: 2px;
}

@media (max-width: 720px) {
  .container {
    flex-direction: column;
    padding: 20px;
  }

  .form-container {
    width: 100%;
  }

  .info-block {
    font-size: 16px;
  }

  .info-block strong {
    font-size: 22px;
  }
}