/* Контейнер формы — ограничение ширины и центрирование */
.wpcf7-form {
  max-width: 700px;
  padding: 0 15px;
  margin: 0 auto;
  box-sizing: border-box;
}


.stop_form h2 {
  color: #4A2537;
}
/* Общие стили текста */
p {
  font-family: Manrope, sans-serif !important;
  font-weight: 300;
}

/* Зелёная галочка для пунктов */
.green-check {
  color: green;
  font-weight: bold;
  margin-right: 4px;
}

/* Стили полей формы */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form textarea {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95em;
  transition: border-color 0.2s;
  font-family: Manrope, sans-serif;
  box-sizing: border-box;
}

/* Стили фокуса полей */
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="url"]:focus,
.wpcf7-form textarea:focus {
  border-color: #c62828;
  outline: none;
}

/* Стили кнопки отправки — прозрачный фон с рамкой */
.wpcf7-form input[type="submit"] {
  background: transparent;
  color: #fff; /* белый текст */
  border: 2px solid #c62828;
  border-radius: 6px;
  padding: 12px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  width: 100%;
  font-family: Manrope, sans-serif;
  box-sizing: border-box;
}

/* Hover-эффект кнопки отправки */
.wpcf7-form input[type="submit"]:hover {
  background: rgba(197, 40, 40, 0.8);
  color: #fff;
}

/* Кнопка регистрации в ряду */
.register-login-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 600px;
  margin: 40px auto 0;
  font-family: Manrope, sans-serif;
}

/* Стили кнопки регистрации */
.register-button {
  background-color: #c62828;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s;
}

/* Hover-эффект кнопки регистрации */
.register-button:hover {
  background-color: rgb(197, 40, 40);
}

.register-button i {
  font-size: 18px;
}

/* Подсказка к форме и ссылки */
.login-hint {
  font-size: 14px;
  color: #333;
}
.login-hint a {
  color: #3c5c59;
  text-decoration: underline;
}

/* Стоп-форма */
.stop_form {
  color: #4A2537;
}

/* Выравнивание лейблов по левому краю */
.wpcf7-form label {
  display: block;
  text-align: left;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 0.95em;
  color: #333;
}
