.hero-lead-form .form-group.row {
    margin-bottom: 16px !important;
}

.hero-lead-form .hero-form-status {
    --status-color: #075985;
    --status-background: #eff8ff;
    --status-border: #b9dcf4;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 14px 0 0;
    padding: 12px 14px;
    border: 1px solid var(--status-border);
    border-left: 4px solid var(--status-color);
    border-radius: 10px;
    background: var(--status-background);
    color: var(--status-color);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
}

.hero-lead-form .hero-form-status[hidden] {
    display: none;
}

.hero-lead-form .hero-form-status[data-state="error"] {
    --status-color: #a12622;
    --status-background: #fff3f1;
    --status-border: #f2c4bf;
}

.hero-lead-form .hero-form-status[data-state="success"] {
    --status-color: #17633e;
    --status-background: #eef8f1;
    --status-border: #bedecb;
}

.hero-lead-form .hero-form-status-icon {
    flex: 0 0 18px;
    margin-top: 2px;
    font-size: 1rem;
    line-height: 1.25;
    text-align: center;
}

.hero-lead-form .hero-form-message {
    min-width: 0;
    overflow-wrap: anywhere;
}

.hero-lead-form input[aria-invalid="true"]:not([type="checkbox"]),
.hero-lead-form select[aria-invalid="true"] {
    border-color: #c53c35;
    background-color: #fff8f6;
}

.hero-lead-form input[type="checkbox"][aria-invalid="true"] {
    outline: 2px solid #c53c35;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .hero-lead-form .hero-form-status-icon.fa-spin {
        animation: none;
    }
}
