/**
* Theme Name: funlife financial
* Description: This is a child theme of vasia, generated by Rdt WP.
* Author: <a href="https://plazathemes.com/">Plaza-Themes</a>
* Template: vasia
* Version: 1.0.2
*/

/* Form Container */
.wpcf7-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Input Fields and Labels */
.wpcf7-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

.wpcf7-form textarea {
    height: 120px;
    resize: none;
}

/* Checkbox Styling */
.wpcf7-form input[type="checkbox"] {
    margin-right: 10px;
}

.wpcf7-form label[for="agree"] {
    font-size: 13px;
    color: #555;
    font-weight: normal;
    display: flex;
    align-items: center;
}

/* Submit Button */
.wpcf7-form [type="submit"] {
    background: #040404;
    color: #fff;
    font-size: 18px;
/*     font-weight: bold; */
    border: none;
/*     border-radius: 4px; */
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.wpcf7-form [type="submit"]:hover {
    background: #fff;
	border:1px solid #040404;
	color:#040404;
}

/* Validation Errors */
.wpcf7-form .wpcf7-not-valid-tip {
    color: red;
    font-size: 12px;
    margin-top: -10px;
    margin-bottom: 10px;
}

/* Responsiveness */
@media (max-width: 768px) {
    .wpcf7-form {
        padding: 15px;
    }
    .wpcf7-form [type="submit"] {
        width: 100%;
    }
}
