/* ============================================
   AFRICA PUBLIC SECTOR CONFERENCE 2026
   ALERT & CHECKBOX STYLES ONLY
   (Preserves your original form styling)
   ============================================ */

/* Alert Messages - Only new styles added */
#msgSubmit, .msg-submit {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    display: none;
}

#msgSubmit:not(.hidden), .msg-submit:not(.hidden) {
    display: block;
    animation: slideDown 0.4s ease;
}

#msgSubmit.success, .msg-submit.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#msgSubmit.error, .msg-submit.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.hidden {
    display: none;
}


/* Loading Spinner for Submit Button */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid white;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
}

/* Error border styling (adds to existing) */
.error-border {
    border-color: #dc3545 !important;
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}