/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 29 2026 | 09:12:02 */
.cf7-custom-form p {
	margin: 0;
	padding: 0;
}

.cf7-custom-form label {
	color: #ffffff;
}
/* Flexbox Grid System */
.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0; 
}

.form-group {
    padding: 0 10px;
    box-sizing: border-box;
    width: 100%;
}

/* 2-Column Layout */
.two-col .form-group {
    width: 50%;
}

/* 3-Column Layout (for Title/Name) */
.three-col .form-group {
    width: 40%; /* Name fields */
}
.three-col .title-field {
    width: 20%; /* Title field smaller */
}

/* Input Styling */
.cf7-custom-form input[type="text"],
.cf7-custom-form input[type="email"],
.cf7-custom-form input[type="tel"],
.cf7-custom-form textarea,
.cf7-custom-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #B9A294;
    border-radius: 0px;
    margin-top: 5px;
	background-color: #DAD5D4;
}

/* Checkbox Styling */
.cf7-custom-form .checkbox-group .wpcf7-list-item {
	margin-left: 0;
}
.cf7-custom-form .checkbox-group .wpcf7-list-item {
    margin-right: 20px;
	margin-bottom: 20px;
}

.consent-section .wpcf7-list-item {
	margin-left: 0;
}

/* Consent Section at bottom */
.consent-section {
    flex-direction: column;
    margin-bottom: 20px;
}
.consent-item {
    margin-bottom: 10px;
    padding: 0 10px;
}
.consent-item input {
    margin-right: 10px;
}

.cf7-custom-form input[type="submit"] {
	position: relative;
    display: block;
    padding: 10px 20px;
    text-decoration: none !important;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 600;
    background-color: transparent;
    border-top: 1px solid #c2826b;
    border-bottom: 1px solid #c2826b;
    border-radius: 0;
	margin-right: 10px;
}

.cf7-custom-form input[type="submit"]:hover {
	color: #deb085;
}

.wpcf7-response-output {
	color: #ffffff;
}

.other-source {
	display: none;
}

.other-source.active {
	display: block;
	margin-bottom: 25px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .two-col .form-group,
    .three-col .form-group,
    .three-col .title-field {
        width: 100%;
    }
	.form-group { 
		padding: 0;
	}
	.consent-item {
		padding: 0;
	}
}