

.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: #fff;
  padding: 30px;
  border: 2px solid #6a114c;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 350px;
      font-family: "Montserrat", Arial, sans-serif;
}

.form-container h2 {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

input[type="text"],
input[type="tel"] {
  width: 90%;
  padding: 12px;
  font-size: 16px;
  border: 2px solid #6a114c;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s ease;
}

input:focus {
  border-color: #1a53c6;
}

.submit-btn {
  width: 90%;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #6a114c;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.submit-btn:hover {
  background: #0d4d21;
}

.small-text {
  font-size: 10px;
  color: #888;
  line-height: 1.4;
  margin-top: 10px;
}

/* Текст справа */
.info-block {
        display: flex
;
    flex-direction: column;
    justify-content: center;
  flex: 1;
  font-size: 22px;
  color: #333;
  font-family: "Montserrat", Arial, sans-serif;
}

.info-block strong {
  font-size: 30px;
  display: block;
  margin-bottom: 6px;
  font-family: "Montserrat", Arial, sans-serif;
}

.divider {
  height: 2px;
  background: #6a114c;
  margin: 15px 0;
  width: 100%;
  max-width: 550px;
}

@media (max-width: 720px) {
    .container {
        flex-direction: column;
        padding: 20px;
    }
    .form-container {
        width: auto;
    }
}