/* Prevent Dawn's floating-label style */
.field__label {
position: static !important;
clip: auto !important;
width: auto !important;
height: auto !important;
overflow: visible !important;
display: block !important;
margin-bottom: 0.5rem;
font-weight: 600;
color: #000;
opacity: 1 !important;
}
/* Input styling */
.field__input {
width: 100%;
padding: 0.8rem;
border: 1px solid #d9d9d9;
border-radius: 2px;
background-color: #fff;
font-size: 1rem;
}
.field__input:focus {
border-color: #000;
outline: none;
}
/* Two-column responsive grid */
.field-group {
display: grid;
gap: 1.5rem;
}
@media (min-width: 750px) {
.field-group {
grid-template-columns: 1fr 1fr;
}
}
/* Center and constrain width */
.contact.page-width {
max-width: 700px;
margin: 0 auto;
}