<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Start custom CSS */.x-button:hover{background-color:#bf3f52 !important;}

/* Style for the entire form */
.wpcf7-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Style for input fields, select dropdowns, and the textarea */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

/* Style for the textarea */
.wpcf7-form textarea {
    height: 150px;
    resize: vertical;
}

/* Style for the submit button */
.wpcf7-form input[type="submit"] {
    background-color: #28a745; /* GREen color */
    color: white;
    padding: 15px 30px; /* Increase padding */
    font-size: 20px; /* Larger font size */
    font-weight: bold; /* Make the text bold */
    text-transform: uppercase; /* Make text uppercase */
    border: none;
    border-radius: 8px; /* Rounder corners */
    cursor: pointer;
    display: block;
    margin: 20px auto 0 auto; /* Center the button and add top margin */
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth hover transition */
}

.wpcf7-form input[type="submit"]:hover {
    background-color: #218838; /* Darker green on hover */
    transform: translateY(-2px); /* Slight lift effect on hover */
}

/* Style for labels */
.wpcf7-form label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

/* Style for the form title */
.wpcf7-form-title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.cf7-button {
    
    font-size:24px;
}


.cf7-button : hover{
    
    background-color:#f8bc3f;
}/* End custom CSS */</pre></body></html>