Blog

Sorry, but nothing was found. Please try a search with different keywords.

/* Remove the headline */
.wpcf7 h2 {
display: none;
}

/* Style the form container */
.wpcf7 form {
border-radius: 25px;
padding: 20px;
background-color: #f7f7f7;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Style the form input fields */
.wpcf7 input[type=”text”],
.wpcf7 input[type=”email”],
.wpcf7 textarea {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border-radius: 25px;
border: 1px solid #ccc;
}

/* Style the submit button */
.wpcf7 input[type=”submit”] {
width: auto;
padding: 10px 20px;
background-color: #219bcd;
color: white;
border: none;
border-radius: 25px;
cursor: pointer;
float: right; /* Aligns the button to the right */
}

/* Adjust spacing between the input and button */
.wpcf7 input[type=”submit”] {
margin-top: 10px;
}