/* xl - DESKTOP STYLES */ 
.wpcf7-textarea {
	height: 100px;
}
.two-col {
    display: flex;
    gap: 10px;
}

.two-col .col input {
    width: 100%;
    box-sizing: border-box;
	margin-bottom: 15px;
}

@media (max-width: 600px){
    .two-col {
        flex-direction: column;
    }
}

.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
    width: 100%;           /* full width of parent container */
    max-width: 400px;      /* optional max width for large screens */
    box-sizing: border-box;
}

/* Optional: center on large screens */
.wpcf7 p {
  /*  margin-bottom: 15px;*/
}

/* Make sure the container doesn’t overflow on small screens */
@media (max-width: 600px) {
    .wpcf7 input[type="email"],
    .wpcf7 input[type="tel"] {
        max-width: 100%;   /* shrink to fit smaller screens */
    }
}


