/* Container for the shortcode form */
.custom-grow-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
  color: #333;
}

/* Titles inside the form */
.custom-grow-form-wrapper h2,
.custom-grow-form-wrapper h3 {
  font-weight: 700;
  color: #2c3e50;
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

/* Labels */
.custom-grow-form-wrapper label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: #34495e;
  margin-bottom: 8px;
}

/* Inputs, Textareas, Selects */
.custom-grow-form-wrapper input[type="text"],
.custom-grow-form-wrapper input[type="email"],
.custom-grow-form-wrapper input[type="tel"],
.custom-grow-form-wrapper textarea,
.custom-grow-form-wrapper select {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #bdc3c7;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.custom-grow-form-wrapper input[type="text"]:focus,
.custom-grow-form-wrapper input[type="email"]:focus,
.custom-grow-form-wrapper input[type="tel"]:focus,
.custom-grow-form-wrapper textarea:focus,
.custom-grow-form-wrapper select:focus {
  border-color: #3498db;
  outline: none;
}

/* Submit button */
.custom-grow-form-wrapper input[type="submit"],
.custom-grow-form-wrapper button[type="submit"] {
  width: 100%;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 14px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.custom-grow-form-wrapper input[type="submit"]:hover,
.custom-grow-form-wrapper button[type="submit"]:hover {
  background-color: #2980b9;
}

/* Responsive */
@media (max-width: 768px) {
  .custom-grow-form-wrapper {
    padding: 20px;
  }
  
  .custom-grow-form-wrapper h2,
  .custom-grow-form-wrapper h3 {
    font-size: 24px;
  }
  
  .custom-grow-form-wrapper label {
    font-size: 13px;
  }
  
  .custom-grow-form-wrapper input[type="text"],
  .custom-grow-form-wrapper input[type="email"],
  .custom-grow-form-wrapper input[type="tel"],
  .custom-grow-form-wrapper textarea,
  .custom-grow-form-wrapper select {
    font-size: 14px;
  }
  
  .custom-grow-form-wrapper input[type="submit"],
  .custom-grow-form-wrapper button[type="submit"] {
    font-size: 14px;
  }
}