/*
Theme Name: Baza Child Theme
Theme URI: https://bazatheme.com
Author: PeerduckThemes
Author URI: https://peerduck.com
Description: Blank Child Theme for Baza
Template: baza
Version: 1.00
Requires at least: 5.0
Requires PHP: 7
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, two-columns, three-columns, custom-colors, featured-images, theme-options
Text Domain: baza
*/


/* Estilos personalizados para select de Contact Form 7 */
.wpcf7 select {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: white;
    font-size: 16px;
    color: #333;
    appearance: none; /* Oculta el estilo predeterminado del select */
}

.wpcf7 select:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* 
.form-row {
  display: flex;
  background-color: red;
  flex-wrap: wrap;
  justify-content: flex-start;
  column-gap: 20px;     
  width: 100%;
  margin-bottom: 24px;
}


.form-group {
  flex: 1 1 calc(50% - 10px);  
  min-width: 240px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}


.form-group label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  color: #222;
}


.form-group input,
.form-group select,
.form-group .wpcf7-form-control-wrap select {
  width: 100% !important;
  max-width: 100% !important;
  padding: 10px 12px;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background-color: #fff;
  box-sizing: border-box;
  display: block !important;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}


.form-group input:focus,
.form-group select:focus {
  border-color: #0057ff;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 87, 255, 0.15);
}


.wpcf7-form-control-wrap {
  display: block !important;
  width: 100% !important;
}


span.wpcf7-not-valid-tip {
  color: #e53935;
  font-size: 13px;
  margin-top: 4px;
  display: block;
}


input[type="submit"] {
  background-color: #0057ff;
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  font-weight: bold;
  transition: background 0.3s ease;
  margin-top: 8px;
}

input[type="submit"]:hover {
  background-color: #003fcc;
}


@media (max-width: 600px) {
  .form-group {
    flex: 1 1 100%;
  }
}

*/






