/*
 Theme Name:   GeneratePress Child
 Theme URI:    http://example.com/generatepress-child
 Description:  GeneratePress Child Theme
 Author:       Your Name
 Author URI:   http://example.com
 Template:     generatepress
 Version:      1.0.0
*/

@import url("../generatepress/style.css");

/* Add your custom styles below */

body {
	margin-bottom: -30px;
}

/* CONTACT FORM 7 */

/* Add rounded corners to form fields and text area */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
    border-radius: 3px;
    box-sizing: border-box;
}

/* Style the submit button to match the provided example */
.wpcf7-form input[type="submit"] {
    background-color: #6a9d18; /* Button background color */
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Shadow effect */
}

/* Hover effect for the submit button */
.wpcf7-form input[type="submit"]:hover {
    background-color: #7ebb1c; /* Hover background color */
}

/* Icon inside the button */
.wpcf7-form input[type="submit"]::after {
    content: '\f063'; /* Font Awesome icon code for arrow */
    font-family: 'Font Awesome 5 Free'; /* Ensure you include Font Awesome library */
    font-weight: 900;
    margin-left: 10px;
}



/* END CONTACT FORM 7 */