/* Style the form container */
.wpcf7 {
max-width: 400px;
margin: 0 auto;
padding: 20px;
background-color: #f5f5f5;
border-radius: 4px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* Style the form fields */
.wpcf7-form input[type=”text”],
.wpcf7-form input[type=”tel”],
.wpcf7-form input[type=”email”] {
display: block;
width: 100%;
padding: 8px;
margin: 5px 0;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 14px;
}
/* Style the submit button */
.wpcf7-form input[type=”submit”] {
display: inline-block;
padding: 8px 16px;
background-color: #0073aa;
color: #fff;
font-weight: bold;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
}
.wpcf7-form input[type=”submit”]:hover {
background-color: #005177;
}
/* Style the savings result */
.wpcf7 + div {
margin-top: 20px;
font-size: 18px;
font-weight: bold;
}