/* Styling for the Contact Form 7 waitlist form */
.wpcf7-form {
    max-width: 500px;
    margin: 0 auto;
}

.wpcf7-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.wpcf7-form input[type="submit"] {
    background-color: #4CAF50; /* Match your button color */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

.wpcf7-form input[type="submit"]:hover {
    background-color: #45a049; /* Slightly darker on hover */
}