/* General form styles */
.wpcf7 {
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 400;
    max-width: 600px; /* Adjust the max width as needed */
    margin: 0 auto; /* Center the form */
    padding: 20px;
    background: #f9f9f9; /* Light background */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Label styles */
.wpcf7 label {
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 400;
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333; /* Darker text */
}

/* Input and textarea styles */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="url"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc; /* Light border */
    border-radius: 5px; /* Rounded corners */
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 400;
    transition: border-color 0.3s; /* Smooth border transition */
}

/* Input focus styles */
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="url"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus {
    border-color: #007BFF; /* Change border color on focus */
    outline: none; /* Remove outline */
}

/* Submit button styles */
.wpcf7 input[type="submit"] {
    background: #007BFF; /* Button color */
    color: white; /* Text color */
    padding: 12px 20px;
    border: none;
    border-radius: 5px; /* Rounded corners */
    cursor: pointer;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 400;
    transition: background 0.3s; /* Smooth background transition */
}

/* Submit button hover styles */
.wpcf7 input[type="submit"]:hover {
    background: #0056b3; /* Darker shade on hover */
}

/* Error message styles */
.wpcf7 .wpcf7-validation-errors {
    background: #f8d7da; /* Light red background */
    color: #721c24; /* Dark red text */
    border: 1px solid #f5c6cb; /* Red border */
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px; /* Rounded corners */
}

