/**
 * AI Page Builder Form Styles
 */

/* Form Messages */
.aipb-form-message {
    padding: 12px 16px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-size: 14px;
    animation: slideInDown 0.3s ease;
}

@keyframes slideInDown {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.aipb-form-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.aipb-form-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Field Validation */
.aipb-field-error {
    border-color: #ef4444 !important;
}

.aipb-field-error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.aipb-field-error-message {
    display: block;
    color: #ef4444;
    font-size: 12px;
    margin-top: 4px;
}

/* Loading State */
[data-aipb-form] button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form Settings Button Style */
.aipb-form-settings-btn {
    font-size: 16px !important;
    line-height: 1 !important;
}

/* Ensure form settings button icon is visible */
body.aipb-editing-mode .aipb-form-settings-btn {
    color: #10B981;
}