/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/* CF7 */
/* General form layout */
.wpcf7-form {
  max-width: 800px;
  margin: 0 auto;
}

/* 2-column layout */
.vussen-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 25px;
}

.vussen-form-half {
  flex: 1 1 45%;
  min-width: 260px;
}

/* Label styling */
.wpcf7-form label {
  display: block;
}

.wpcf7-form label span {
  display: block;
  font-weight: 500;
  margin-bottom: 5px; /* This creates the space between text and input */
  font-size: 15px;
}

/* Inputs */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"] {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  background: #fff;
  box-sizing: border-box;
  transition: border 0.3s ease;
}

.wpcf7-form input:focus {
  border-color: #0073e6;
  outline: none;
}

/* Submit button */
.wpcf7-form input[type="submit"] {
  padding: 14px 32px;
  font-size: 16px;
  background-color: #0073e6;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.wpcf7-form input[type="submit"]:hover {
  background-color: #005bb5;
}
