/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 18 2025 | 17:55:02 */
/* General Styling */
.wpcf7-form {
    max-width: 600px;
    margin: auto;
    font-family: Arial, sans-serif;
}
.form-row-1{
	width: 70%;
}
.wpcf7-form label {
    display: block;
    font-weight: bold;
    margin-bottom:10px;
}
.wpcf7-form input,
.wpcf7-form textarea {
    width: 100%;
    padding: 10px !important;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #f8f9fa;
    font-size: 16px;
	margin-bottom : 15px;
	
}
.wpcf7-form textarea {
    min-height: 60px;
    resize: vertical;
}

/* First and Last Name in One Row */
.form-row {
    display: flex;
    gap: 10px;
}
.form-group {
    flex: 1;
}

/* Full-Width Fields */
.full-width {
    width: 100%;
}

/* Submit Button */
.submit-button {
    background-color: #055589;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
/*     width: 100%; */
    text-align: center;
}
.submit-button:hover {
    background-color: #003d80;
}

/* Responsive Design */
@media (max-width: 600px) {
	.form-row-1{
	width: 100%;
	}
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}
