/* Core Form Styles */
.afe-form {
    position: relative;
    max-width: 100%;
}

.afe-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
}

.afe-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.afe-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Helper for the loading state */
.afe-form button[disabled] {
    opacity: 0.7;
    cursor: wait;
}

/* Honeypot Spam Protection (Hidden) */
/* Hides the 'afe_hp' input generated by class-afe-frontend.php */
.afe-hp-field {
    display: none !important;
    opacity: 0;
    position: absolute;
    z-index: -1;
    height: 0;
    width: 0;
}