/* Responsive form styles with rounded borders and specified button color */
.fcw-form { max-width: 680px; margin: 1rem auto; padding: 1rem; border: 1px solid #e6e6e6; border-radius: 12px; background:#ffffff; box-sizing: border-box; }
.fcw-row { margin-bottom: 0.9rem; display:flex; flex-direction:column; }
.fcw-row label { font-weight:600; margin-bottom:0.35rem; }
.fcw-row input[type="text"], .fcw-row input[type="email"], .fcw-row input[type="tel"], .fcw-row textarea, .fcw-row select { padding:0.6rem; border:1px solid #d1d1d1; border-radius:8px; font-size:1rem; box-sizing:border-box; width:100%; }
.fcw-row textarea { resize:vertical; min-height:120px; }
.fcw-submit { padding:0.65rem 1rem; border:none; border-radius:8px; cursor:pointer; background:#00577B; color:#fff; font-weight:600; }
.fcw-warning { padding:0.6rem; background:#fff4e5; border:1px solid #ffd9a8; border-radius:8px; max-width:680px; margin:1rem auto; }
@media (max-width:600px) {
    .fcw-form { padding:0.8rem; border-radius:10px; }
    .fcw-row input, .fcw-row textarea, .fcw-row select { font-size:0.95rem; }
}
