 /* Form Success & Error Messages Styling */
#msgSubmit {
    padding: 20px 25px;
    margin-top: 20px;
    border-radius: 12px;
    font-size: 16px !important;
    font-weight: 600;
    text-align: center;
    line-height: 1.6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.4s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#msgSubmit.success-msg {
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    color: #065F46 !important;
    border: 2px solid #10B981;
}

#msgSubmit.error-msg {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    color: #991B1B !important;
    border: 2px solid #EF4444;
}

#msgSubmit.success-msg::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 28px;
    background: #10B981;
    color: white;
    border-radius: 50%;
    line-height: 28px;
    font-size: 18px;
    font-weight: bold;
}

#msgSubmit.error-msg::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 28px;
    background: #EF4444;
    color: white;
    border-radius: 50%;
    line-height: 28px;
    font-size: 18px;
    font-weight: bold;
}

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

#msgSubmit.hidden {
    display: none !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    #msgSubmit {
        font-size: 14px !important;
        padding: 16px 20px;
    }
    
    #msgSubmit.success-msg::before,
    #msgSubmit.error-msg::before {
        width: 24px;
        height: 24px;
        line-height: 24px;
        font-size: 16px;
    }
}
