/**
Theme Name: soulmate
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: soulmate
Template: astra
*/
/* Estilo base para inputs */
.wpcf7 input,
.wpcf7 select,
.wpcf7 textarea {
  background-color: #F8F6F5;
  border: 1px solid #ccc;
  border-radius: 25px;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 14px;
  margin-bottom: 15px;
}

/* Estructura de columnas en escritorio */
.form-columns {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

/* Cada columna ocupa 50% en escritorio */
.form-left,
.form-right {
  flex: 1;
  min-width: 300px;
}

/* Campo de mensaje grande y centrado */
.form-message textarea {
  min-height: 150px;
  display: block;
  margin: 0 auto 20px auto;
}

/* Centrar botón de envío */
.form-submit {
  text-align: center;
}

/* Botón personalizado */
.form-submit input[type="submit"] {
  background-color: #BF995D;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 30px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 220px; /* NUEVO: ancho del botón */
  display: block; /* NUEVO: necesario para que funcione margin */
  margin: 0 auto; /* NUEVO: centra el botón */
}
.form-submit input[type="submit"]:hover {
  background-color: #a97f48;
}

/* Aceptación estilo simple */
.form-accept {
  text-align: center;
  margin-bottom: 20px;
  font-size: 13px;
}

/* Responsivo en móvil */
@media screen and (max-width: 768px) {
  .form-columns {
    flex-direction: column;
  }

  .form-left,
  .form-right {
    width: 100%;
  }

  .form-message textarea {
    width: 100%;
  }
}

