/* Form wrapper */
.form {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px 30px; /* row-gap / col-gap */
max-width: 640px;
margin: 0 auto;
font-family: Arial, sans-serif;
}
/* Make labels block */
.form label {
display: block;
font-weight: 400;
margin-bottom: 6px;
color: #fff;
font-size: 18px;
}
/* Inputs, selects, textarea styling */
.form input[type=”text”],
.form input[type=”email”],
.form select,
.form textarea {
width: 100%;
padding: 10px 12px;
border: 1px solid #444;
background: #111;
color: #fff;
border-radius: 4px;
font-size: 15px;
}
.form input[type=”text”]::placeholder,
.form textarea::placeholder {
color: #aaa;
}
/* Radio group styling */
.form div {
display: flex;
flex-direction: column;
}
/* Make radio labels inline */
.form .wpcf7-radio label {
display: inline-flex;
align-items: center;
margin-right: 15px;
font-weight: normal;
font-size: 18px;
}
/* Textarea takes full row */
.form textarea {
min-height: 120px;
grid-column: 1 / -1;
}
/* Submit button full width */
.form input[type=”submit”].wpcf7-submit {
grid-column: 1 / -1;
padding: 14px;
background: #f05a28;
border: none;
font-weight: 400 !important;
color: #fff;
cursor: pointer;
text-transform: uppercase;
border-radius: 4px;
transition: background .2s;
font-size: 18px !important;
}
.form input[type=”submit”]:hover {
background: #ff6f3c;
}
/* Mobile fallback: single column */
@media (max-width: 640px) {
.form {
grid-template-columns: 1fr;
}
}