.tcf-form-wrapper {
    margin: 16px 0;
}

.tcf-message {
    padding: 10px 12px;
    margin-bottom: 12px;
    border-radius: 4px;
}

.tcf-message-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.tcf-message-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.tcf-form .tcf-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 0 -6px 10px;
}

.tcf-form .tcf-col {
    padding: 0 6px;
    flex: 0 0 var(--tcf-col-width);
    max-width: var(--tcf-col-width);
    box-sizing: border-box;
}

.tcf-field {
    margin-bottom: 12px;
}

.tcf-field input[type='text'],
.tcf-field input[type='email'],
.tcf-field input[type='tel'],
.tcf-field input[type='number'],
.tcf-field input[type='date'],
.tcf-field input[type='time'],
.tcf-field input[type='file'],
.tcf-field select,
.tcf-field textarea {
    width: 100%;
    max-width: 100%;
}

.tcf-label {
    display: inline-block;
    margin-bottom: 4px;
    font-weight: 600;
}

.tcf-help {
    display: block;
    color: #6b7280;
    margin-top: 4px;
}

.tcf-error {
    color: #b91c1c;
    font-size: 13px;
    margin-top: 4px;
}

.tcf-honeypot-wrap {
    position: absolute !important;
    left: -9999px !important;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.tcf-options-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tcf-option {
    display: flex;
    gap: 6px;
    align-items: center;
}

.tcf-submit-button[disabled] {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .tcf-form .tcf-col {
        flex-basis: 100%;
        max-width: 100%;
    }
}
